From 399bf383f4975fc874e81a2283098fd82ea7a7df Mon Sep 17 00:00:00 2001 From: Mark Rousskov Date: Mon, 15 Jun 2020 13:57:55 -0400 Subject: [PATCH] Disable clippy tests --- src/bootstrap/test.rs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/bootstrap/test.rs b/src/bootstrap/test.rs index b8c5751565838..161f5d5ffd8f5 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()); } }