Skip to content

Commit 7c88d9e

Browse files
committed
Remove the compile-fail feature gates whitelist
No longer necessary now that the whitelist is empty. Fixes: #39059
1 parent cee4ef8 commit 7c88d9e

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

src/tools/tidy/src/features.rs

-5
Original file line numberDiff line numberDiff line change
@@ -165,16 +165,11 @@ pub fn check(path: &Path, bad: &mut bool) {
165165
}
166166
});
167167

168-
// FIXME get this whitelist empty.
169-
let whitelist = vec![
170-
];
171-
172168
// Only check the number of lang features.
173169
// Obligatory testing for library features is dumb.
174170
let gate_untested = features.iter()
175171
.filter(|&(_, f)| f.level == Status::Unstable)
176172
.filter(|&(_, f)| !f.has_gate_test)
177-
.filter(|&(n, _)| !whitelist.contains(&n.as_str()))
178173
.collect::<Vec<_>>();
179174

180175
for &(name, _) in gate_untested.iter() {

0 commit comments

Comments
 (0)