(path: &str)
| 2921 | } |
| 2922 | |
| 2923 | fn is_under_config_excluded_test_dir(path: &str) -> bool { |
| 2924 | let Some(project_rel) = project_relative_path(path) else { |
| 2925 | return false; |
| 2926 | }; |
| 2927 | TEST_CONFIG_EXCLUDED_DIRS |
| 2928 | .iter() |
| 2929 | .any(|dir| project_rel == *dir || project_rel.strip_prefix(&format!("{dir}/")).is_some()) |
| 2930 | } |
| 2931 | |
| 2932 | fn top_level_headers(root_prefix: &str, dir: &str) -> HashSet<String> { |
| 2933 | let mut headers = HashSet::new(); |
no test coverage detected