]> git.lizzy.rs Git - rust.git/commitdiff
Remove compile-fail-fulldeps test suite
authorVadim Petrochenkov <vadim.petrochenkov@gmail.com>
Sun, 2 Dec 2018 20:07:22 +0000 (23:07 +0300)
committerVadim Petrochenkov <vadim.petrochenkov@gmail.com>
Sun, 9 Dec 2018 16:56:30 +0000 (19:56 +0300)
src/bootstrap/builder.rs
src/bootstrap/test.rs
src/tools/tidy/src/features.rs

index b3682850de75836b7841345fdff66417c6c6fac6..7dc64db70b8fcb760064590d2e21228397b800fa 100644 (file)
@@ -389,7 +389,6 @@ macro_rules! describe {
                 test::UiFullDeps,
                 test::RunPassFullDeps,
                 test::RunFailFullDeps,
-                test::CompileFailFullDeps,
                 test::Rustdoc,
                 test::Pretty,
                 test::RunPassPretty,
index 254286f088e8472ef565684e480baf69c1420ea7..ca9894f8f62201847c0b1507ebfaff63b6307728 100644 (file)
@@ -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",
index b0bd5ba8dbdbdabef25f2f7faa9426eac2377a5d..ff8fa2f920e08a1f4545c31ec8006cb526180874 100644 (file)
@@ -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();