Skip to content

Commit 7821a9b

Browse files
committed
Auto merge of #39247 - est31:master, r=jseyfried
Remove proc_macro from the tidy whitelist again PR #38842 has exposed that we were missing the src/test/compile-fail-fulldeps directory in the search for feature gate tests. Because the detection didn't work despite the effort to name the test appropriately and add a correct "// gate-test-proc_macro" comment, proc_macro was added to the whitelist. We fix this little weakness in the feature gate tidy check and add the src/test/compile-fail-fulldeps directory to the checked directories. Part of issue #39059 .
2 parents 3f261ec + e3daab0 commit 7821a9b

File tree

2 files changed

+10
-4
lines changed

2 files changed

+10
-4
lines changed

src/tools/tidy/src/features.rs

+5-4
Original file line numberDiff line numberDiff line change
@@ -115,9 +115,10 @@ pub fn check(path: &Path, bad: &mut bool) {
115115
}
116116
});
117117

118-
super::walk(&path.join("test/compile-fail"),
119-
&mut |path| super::filter_dirs(path),
120-
&mut |file| {
118+
super::walk_many(&[&path.join("test/compile-fail"),
119+
&path.join("test/compile-fail-fulldeps")],
120+
&mut |path| super::filter_dirs(path),
121+
&mut |file| {
121122
let filename = file.file_name().unwrap().to_string_lossy();
122123
if !filename.ends_with(".rs") || filename == "features.rs" ||
123124
filename == "diagnostic_list.rs" {
@@ -170,7 +171,7 @@ pub fn check(path: &Path, bad: &mut bool) {
170171
"cfg_target_has_atomic", "staged_api", "const_indexing",
171172
"unboxed_closures", "stmt_expr_attributes",
172173
"cfg_target_thread_local", "unwind_attributes",
173-
"inclusive_range_syntax", "proc_macro"
174+
"inclusive_range_syntax"
174175
];
175176

176177
// Only check the number of lang features.

src/tools/tidy/src/main.rs

+5
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,11 @@ fn filter_dirs(path: &Path) -> bool {
7171
skip.iter().any(|p| path.ends_with(p))
7272
}
7373

74+
fn walk_many(paths: &[&Path], skip: &mut FnMut(&Path) -> bool, f: &mut FnMut(&Path)) {
75+
for path in paths {
76+
walk(path, skip, f);
77+
}
78+
}
7479

7580
fn walk(path: &Path, skip: &mut FnMut(&Path) -> bool, f: &mut FnMut(&Path)) {
7681
for entry in t!(fs::read_dir(path), path) {

0 commit comments

Comments
 (0)