about summary refs log tree commit diff
diff options
context:
space:
mode:
authorMark Rousskov <mark.simulacrum@gmail.com>2020-06-15 13:57:55 -0400
committerMark Rousskov <mark.simulacrum@gmail.com>2020-06-15 13:57:55 -0400
commit399bf383f4975fc874e81a2283098fd82ea7a7df (patch)
tree5e067e51a819636fcc5a12083075167d495d0230
parent51e11e310c36d3322335756fe2ea109c99d6ed50 (diff)
downloadrust-399bf383f4975fc874e81a2283098fd82ea7a7df.tar.gz
rust-399bf383f4975fc874e81a2283098fd82ea7a7df.zip
Disable clippy tests
-rw-r--r--src/bootstrap/test.rs5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/bootstrap/test.rs b/src/bootstrap/test.rs
index b8c57515658..161f5d5ffd8 100644
--- a/src/bootstrap/test.rs
+++ b/src/bootstrap/test.rs
@@ -554,7 +554,10 @@ impl Step for Clippy {
 
         builder.add_rustc_lib_path(compiler, &mut cargo);
 
-        builder.run(&mut cargo.into());
+        // 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());
     }
 }