Skip to content

Commit 0068228

Browse files
committed
Rollup merge of rust-lang#49209 - Zoxc:run-make-last, r=Mark-Simulacrum
Run the `run-make` tests last, so more tests run on Windows when `make` is unavailable Just rust-lang#47996 again. r? @Mark-Simulacrum
2 parents c8a3507 + 859640a commit 0068228

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

src/bootstrap/builder.rs

+4-2
Original file line numberDiff line numberDiff line change
@@ -308,12 +308,14 @@ impl<'a> Builder<'a> {
308308
test::UiFullDeps, test::RunPassFullDeps, test::RunFailFullDeps,
309309
test::CompileFailFullDeps, test::IncrementalFullDeps, test::Rustdoc, test::Pretty,
310310
test::RunPassPretty, test::RunFailPretty, test::RunPassValgrindPretty,
311-
test::RunPassFullDepsPretty, test::RunFailFullDepsPretty, test::RunMake,
311+
test::RunPassFullDepsPretty, test::RunFailFullDepsPretty,
312312
test::Crate, test::CrateLibrustc, test::CrateRustdoc, test::Linkcheck,
313313
test::Cargotest, test::Cargo, test::Rls, test::ErrorIndex, test::Distcheck,
314314
test::Nomicon, test::Reference, test::RustdocBook, test::RustByExample,
315315
test::TheBook, test::UnstableBook,
316-
test::Rustfmt, test::Miri, test::Clippy, test::RustdocJS, test::RustdocTheme),
316+
test::Rustfmt, test::Miri, test::Clippy, test::RustdocJS, test::RustdocTheme,
317+
// Run run-make last, since these won't pass without make on Windows
318+
test::RunMake),
317319
Kind::Bench => describe!(test::Crate, test::CrateLibrustc),
318320
Kind::Doc => describe!(doc::UnstableBook, doc::UnstableBookGen, doc::TheBook,
319321
doc::Standalone, doc::Std, doc::Test, doc::Rustc, doc::ErrorIndex, doc::Nomicon,

0 commit comments

Comments
 (0)