We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cee4ef8 commit 7c88d9eCopy full SHA for 7c88d9e
src/tools/tidy/src/features.rs
@@ -165,16 +165,11 @@ pub fn check(path: &Path, bad: &mut bool) {
165
}
166
});
167
168
- // FIXME get this whitelist empty.
169
- let whitelist = vec![
170
- ];
171
-
172
// Only check the number of lang features.
173
// Obligatory testing for library features is dumb.
174
let gate_untested = features.iter()
175
.filter(|&(_, f)| f.level == Status::Unstable)
176
.filter(|&(_, f)| !f.has_gate_test)
177
- .filter(|&(n, _)| !whitelist.contains(&n.as_str()))
178
.collect::<Vec<_>>();
179
180
for &(name, _) in gate_untested.iter() {
0 commit comments