about summary refs log tree commit diff
diff options
context:
space:
mode:
authorAaron Hill <aa1ronham@gmail.com>2020-06-21 16:28:58 -0400
committerAaron Hill <aa1ronham@gmail.com>2020-06-22 12:46:29 -0400
commitd3feb8baafc0ce1e1e04e237f1d059862e3173fb (patch)
treef1da32bc2e2e3f3096a33d4ca335f9a7c6f57eab
parentad9972a20d0496ef326e93bd6d96d13a0708ada2 (diff)
downloadrust-d3feb8baafc0ce1e1e04e237f1d059862e3173fb.tar.gz
rust-d3feb8baafc0ce1e1e04e237f1d059862e3173fb.zip
Re-enable Clippy tests
-rw-r--r--src/bootstrap/test.rs5
1 files changed, 1 insertions, 4 deletions
diff --git a/src/bootstrap/test.rs b/src/bootstrap/test.rs
index 8a37a70d60d..bb35203c826 100644
--- a/src/bootstrap/test.rs
+++ b/src/bootstrap/test.rs
@@ -554,10 +554,7 @@ impl Step for Clippy {
 
         builder.add_rustc_lib_path(compiler, &mut cargo);
 
-        // FIXME: Disable clippy tests for now, they're failing on master
-        // (generally this would mean a toolstate failure but we don't have
-        // toolstate for clippy anymore).
-        // builder.run(&mut cargo.into());
+        builder.run(&mut cargo.into());
     }
 }