From 654cd09453dbdf63a853a62a3c7c945ac6f0d21a Mon Sep 17 00:00:00 2001 From: Vadim Petrochenkov Date: Sun, 2 Dec 2018 23:07:22 +0300 Subject: [PATCH] Remove compile-fail-fulldeps test suite --- src/bootstrap/builder.rs | 1 - src/bootstrap/test.rs | 6 ------ src/tools/tidy/src/features.rs | 9 +++------ 3 files changed, 3 insertions(+), 13 deletions(-) diff --git a/src/bootstrap/builder.rs b/src/bootstrap/builder.rs index b3682850de7..7dc64db70b8 100644 --- a/src/bootstrap/builder.rs +++ b/src/bootstrap/builder.rs @@ -389,7 +389,6 @@ macro_rules! describe { test::UiFullDeps, test::RunPassFullDeps, test::RunFailFullDeps, - test::CompileFailFullDeps, test::Rustdoc, test::Pretty, test::RunPassPretty, diff --git a/src/bootstrap/test.rs b/src/bootstrap/test.rs index 254286f088e..ca9894f8f62 100644 --- a/src/bootstrap/test.rs +++ b/src/bootstrap/test.rs @@ -832,12 +832,6 @@ fn run(self, builder: &Builder) { suite: "run-fail-fulldeps" }); -host_test!(CompileFailFullDeps { - path: "src/test/compile-fail-fulldeps", - mode: "compile-fail", - suite: "compile-fail-fulldeps" -}); - host_test!(Rustdoc { path: "src/test/rustdoc", mode: "rustdoc", diff --git a/src/tools/tidy/src/features.rs b/src/tools/tidy/src/features.rs index b0bd5ba8dbd..ff8fa2f920e 100644 --- a/src/tools/tidy/src/features.rs +++ b/src/tools/tidy/src/features.rs @@ -61,12 +61,9 @@ pub fn check(path: &Path, bad: &mut bool, quiet: bool) { let mut contents = String::new(); - super::walk_many(&[&path.join("test/ui-fulldeps"), - &path.join("test/ui"), - &path.join("test/compile-fail"), - &path.join("test/compile-fail-fulldeps"), - &path.join("test/parse-fail"), - &path.join("test/ui"),], + super::walk_many(&[&path.join("test/ui"), + &path.join("test/ui-fulldeps"), + &path.join("test/compile-fail")], &mut |path| super::filter_dirs(path), &mut |file| { let filename = file.file_name().unwrap().to_string_lossy(); -- 2.44.0