Skip to content

Commit

Permalink
Move bootstrap tests to the end of the default test run
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
Mark-Simulacrum committed Jun 16, 2018
1 parent c610316 commit 18bb86e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/bootstrap/builder.rs
Expand Up @@ -370,7 +370,6 @@ impl<'a> Builder<'a> {
),
Kind::Test => describe!(
test::Tidy,
test::Bootstrap,
test::Ui,
test::RunPass,
test::CompileFail,
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit 18bb86e

Please sign in to comment.