mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
rustbuild: remove obsolete fulldeps behavior from src/test/pretty tests, and enable them by default.
This commit is contained in:
parent
0ee059d5a0
commit
dbf19c3975
@ -48,7 +48,6 @@ check:
|
||||
$(Q)$(BOOTSTRAP) test $(BOOTSTRAP_ARGS)
|
||||
check-aux:
|
||||
$(Q)$(BOOTSTRAP) test \
|
||||
src/test/pretty \
|
||||
src/test/run-pass/pretty \
|
||||
src/test/run-fail/pretty \
|
||||
src/test/run-pass-valgrind/pretty \
|
||||
|
@ -897,12 +897,10 @@ host_test!(Rustdoc {
|
||||
suite: "rustdoc"
|
||||
});
|
||||
|
||||
test!(Pretty {
|
||||
host_test!(Pretty {
|
||||
path: "src/test/pretty",
|
||||
mode: "pretty",
|
||||
suite: "pretty",
|
||||
default: false,
|
||||
host: true
|
||||
suite: "pretty"
|
||||
});
|
||||
test!(RunPassPretty {
|
||||
path: "src/test/run-pass/pretty",
|
||||
@ -993,11 +991,7 @@ impl Step for Compiletest {
|
||||
});
|
||||
}
|
||||
|
||||
if suite.ends_with("fulldeps") ||
|
||||
// FIXME: Does pretty need librustc compiled? Note that there are
|
||||
// fulldeps test suites with mode = pretty as well.
|
||||
mode == "pretty"
|
||||
{
|
||||
if suite.ends_with("fulldeps") {
|
||||
builder.ensure(compile::Rustc { compiler, target });
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user