]> git.lizzy.rs Git - rust.git/commitdiff
Move bootstrap tests to the end of the default test run
authorMark Simulacrum <mark.simulacrum@gmail.com>
Sat, 16 Jun 2018 17:11:06 +0000 (11:11 -0600)
committerMark Simulacrum <mark.simulacrum@gmail.com>
Sat, 16 Jun 2018 17:11:06 +0000 (11:11 -0600)
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.

src/bootstrap/builder.rs

index d482a0d565027a6675be76c31bbc04c6a91abb92..ec7eebd1d0189508364b331e15c817029f969719 100644 (file)
@@ -370,7 +370,6 @@ macro_rules! describe {
             ),
             Kind::Test => describe!(
                 test::Tidy,
-                test::Bootstrap,
                 test::Ui,
                 test::RunPass,
                 test::CompileFail,
@@ -416,6 +415,8 @@ macro_rules! describe {
                 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