Skip to content

Commit 654cd09

Browse files
committed
Remove compile-fail-fulldeps test suite
1 parent 725d22e commit 654cd09

File tree

3 files changed

+3
-13
lines changed

3 files changed

+3
-13
lines changed

src/bootstrap/builder.rs

-1
Original file line numberDiff line numberDiff line change
@@ -389,7 +389,6 @@ impl<'a> Builder<'a> {
389389
test::UiFullDeps,
390390
test::RunPassFullDeps,
391391
test::RunFailFullDeps,
392-
test::CompileFailFullDeps,
393392
test::Rustdoc,
394393
test::Pretty,
395394
test::RunPassPretty,

src/bootstrap/test.rs

-6
Original file line numberDiff line numberDiff line change
@@ -832,12 +832,6 @@ host_test!(RunFailFullDeps {
832832
suite: "run-fail-fulldeps"
833833
});
834834

835-
host_test!(CompileFailFullDeps {
836-
path: "src/test/compile-fail-fulldeps",
837-
mode: "compile-fail",
838-
suite: "compile-fail-fulldeps"
839-
});
840-
841835
host_test!(Rustdoc {
842836
path: "src/test/rustdoc",
843837
mode: "rustdoc",

src/tools/tidy/src/features.rs

+3-6
Original file line numberDiff line numberDiff line change
@@ -61,12 +61,9 @@ pub fn check(path: &Path, bad: &mut bool, quiet: bool) {
6161

6262
let mut contents = String::new();
6363

64-
super::walk_many(&[&path.join("test/ui-fulldeps"),
65-
&path.join("test/ui"),
66-
&path.join("test/compile-fail"),
67-
&path.join("test/compile-fail-fulldeps"),
68-
&path.join("test/parse-fail"),
69-
&path.join("test/ui"),],
64+
super::walk_many(&[&path.join("test/ui"),
65+
&path.join("test/ui-fulldeps"),
66+
&path.join("test/compile-fail")],
7067
&mut |path| super::filter_dirs(path),
7168
&mut |file| {
7269
let filename = file.file_name().unwrap().to_string_lossy();

0 commit comments

Comments
 (0)