Skip to content

Commit 18bb86e

Browse files
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.
1 parent c610316 commit 18bb86e

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/bootstrap/builder.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -370,7 +370,6 @@ impl<'a> Builder<'a> {
370370
),
371371
Kind::Test => describe!(
372372
test::Tidy,
373-
test::Bootstrap,
374373
test::Ui,
375374
test::RunPass,
376375
test::CompileFail,
@@ -416,6 +415,8 @@ impl<'a> Builder<'a> {
416415
test::Clippy,
417416
test::RustdocJS,
418417
test::RustdocTheme,
418+
// Run bootstrap close to the end as it's unlikely to fail
419+
test::Bootstrap,
419420
// Run run-make last, since these won't pass without make on Windows
420421
test::RunMake,
421422
test::RustdocUi

0 commit comments

Comments
 (0)