about summary refs log tree commit diff
diff options
context:
space:
mode:
authorMark Simulacrum <mark.simulacrum@gmail.com>2018-06-16 11:11:06 -0600
committerMark Simulacrum <mark.simulacrum@gmail.com>2018-06-16 11:11:06 -0600
commit18bb86e5e11a70eb6ba9365499a9061c49581eee (patch)
tree5b9ec74ac7e1dd7d0b2ebd2666421a4da24a1eb4
parentc6103160dd60cace43443f1c5c2e7f4db8cc426e (diff)
downloadrust-18bb86e5e11a70eb6ba9365499a9061c49581eee.tar.gz
rust-18bb86e5e11a70eb6ba9365499a9061c49581eee.zip
Move bootstrap tests to the end of the default test run
Since they are unlikely to fail and are almost never going to fail
except with bootstrap changes (which would be tested locally anyway) it
makes sense to run these tests close to last.
-rw-r--r--src/bootstrap/builder.rs3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/bootstrap/builder.rs b/src/bootstrap/builder.rs
index d482a0d5650..ec7eebd1d01 100644
--- a/src/bootstrap/builder.rs
+++ b/src/bootstrap/builder.rs
@@ -370,7 +370,6 @@ impl<'a> Builder<'a> {
             ),
             Kind::Test => describe!(
                 test::Tidy,
-                test::Bootstrap,
                 test::Ui,
                 test::RunPass,
                 test::CompileFail,
@@ -416,6 +415,8 @@ impl<'a> Builder<'a> {
                 test::Clippy,
                 test::RustdocJS,
                 test::RustdocTheme,
+                // Run bootstrap close to the end as it's unlikely to fail
+                test::Bootstrap,
                 // Run run-make last, since these won't pass without make on Windows
                 test::RunMake,
                 test::RustdocUi