Skip to content

Commit 3d809d3

Browse files
committed
Remove compile-fail-fulldeps test suite
1 parent 7a3d7b1 commit 3d809d3

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
@@ -833,12 +833,6 @@ host_test!(RunFailFullDeps {
833833
suite: "run-fail-fulldeps"
834834
});
835835

836-
host_test!(CompileFailFullDeps {
837-
path: "src/test/compile-fail-fulldeps",
838-
mode: "compile-fail",
839-
suite: "compile-fail-fulldeps"
840-
});
841-
842836
host_test!(Rustdoc {
843837
path: "src/test/rustdoc",
844838
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)