about summary refs log tree commit diff
diff options
context:
space:
mode:
authorGibson Fahnestock <gibfahn@gmail.com>2017-03-05 20:26:23 +0000
committerGibson Fahnestock <gibfahn@gmail.com>2017-03-05 20:26:23 +0000
commit7c88d9e86e86031b6b611d09b6b85f71de044d9e (patch)
tree734782ab7aaaad8170030e67603a8e95c58612fc
parentcee4ef8e7c6b657b3501a57a789e72c393390f44 (diff)
downloadrust-7c88d9e86e86031b6b611d09b6b85f71de044d9e.tar.gz
rust-7c88d9e86e86031b6b611d09b6b85f71de044d9e.zip
Remove the compile-fail feature gates whitelist
No longer necessary now that the whitelist is empty.

Fixes: https://github.com/rust-lang/rust/issues/39059
-rw-r--r--src/tools/tidy/src/features.rs5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/tools/tidy/src/features.rs b/src/tools/tidy/src/features.rs
index 0206fcb5848..9b323c95fc3 100644
--- a/src/tools/tidy/src/features.rs
+++ b/src/tools/tidy/src/features.rs
@@ -165,16 +165,11 @@ pub fn check(path: &Path, bad: &mut bool) {
         }
     });
 
-    // FIXME get this whitelist empty.
-    let whitelist = vec![
-    ];
-
     // Only check the number of lang features.
     // Obligatory testing for library features is dumb.
     let gate_untested = features.iter()
                                 .filter(|&(_, f)| f.level == Status::Unstable)
                                 .filter(|&(_, f)| !f.has_gate_test)
-                                .filter(|&(n, _)| !whitelist.contains(&n.as_str()))
                                 .collect::<Vec<_>>();
 
     for &(name, _) in gate_untested.iter() {