Skip to content

Commit

Permalink
Remove compile-fail-fulldeps test suite
Browse files Browse the repository at this point in the history
  • Loading branch information
petrochenkov committed Dec 9, 2018
1 parent 725d22e commit 654cd09
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 13 deletions.
1 change: 0 additions & 1 deletion src/bootstrap/builder.rs
Expand Up @@ -389,7 +389,6 @@ impl<'a> Builder<'a> {
test::UiFullDeps,
test::RunPassFullDeps,
test::RunFailFullDeps,
test::CompileFailFullDeps,
test::Rustdoc,
test::Pretty,
test::RunPassPretty,
Expand Down
6 changes: 0 additions & 6 deletions src/bootstrap/test.rs
Expand Up @@ -832,12 +832,6 @@ host_test!(RunFailFullDeps {
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",
Expand Down
9 changes: 3 additions & 6 deletions src/tools/tidy/src/features.rs
Expand Up @@ -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();
Expand Down

0 comments on commit 654cd09

Please sign in to comment.