diff --git a/src/tools/tidy/src/features.rs b/src/tools/tidy/src/features.rs index f540dc3d3e6ad..ee8113e80e575 100644 --- a/src/tools/tidy/src/features.rs +++ b/src/tools/tidy/src/features.rs @@ -115,9 +115,10 @@ pub fn check(path: &Path, bad: &mut bool) { } }); - super::walk(&path.join("test/compile-fail"), - &mut |path| super::filter_dirs(path), - &mut |file| { + super::walk_many(&[&path.join("test/compile-fail"), + &path.join("test/compile-fail-fulldeps")], + &mut |path| super::filter_dirs(path), + &mut |file| { let filename = file.file_name().unwrap().to_string_lossy(); if !filename.ends_with(".rs") || filename == "features.rs" || filename == "diagnostic_list.rs" { @@ -170,7 +171,7 @@ pub fn check(path: &Path, bad: &mut bool) { "cfg_target_has_atomic", "staged_api", "const_indexing", "unboxed_closures", "stmt_expr_attributes", "cfg_target_thread_local", "unwind_attributes", - "inclusive_range_syntax", "proc_macro" + "inclusive_range_syntax" ]; // Only check the number of lang features. diff --git a/src/tools/tidy/src/main.rs b/src/tools/tidy/src/main.rs index 7566580b1a5f2..9962c6ec9af12 100644 --- a/src/tools/tidy/src/main.rs +++ b/src/tools/tidy/src/main.rs @@ -71,6 +71,11 @@ fn filter_dirs(path: &Path) -> bool { skip.iter().any(|p| path.ends_with(p)) } +fn walk_many(paths: &[&Path], skip: &mut FnMut(&Path) -> bool, f: &mut FnMut(&Path)) { + for path in paths { + walk(path, skip, f); + } +} fn walk(path: &Path, skip: &mut FnMut(&Path) -> bool, f: &mut FnMut(&Path)) { for entry in t!(fs::read_dir(path), path) {