Skip to content

Commit 18fd17d

Browse files
committedMay 12, 2023
run miri tests with MIR opts in rustc CI
1 parent b157438 commit 18fd17d

File tree

1 file changed

+19
-2
lines changed

1 file changed

+19
-2
lines changed
 

‎src/bootstrap/test.rs

+19-2
Original file line numberDiff line numberDiff line change
@@ -613,6 +613,21 @@ impl Step for Miri {
613613
builder.run(&mut cargo);
614614
}
615615

616+
// Run it again for mir-opt-level 4 to catch some miscompilations.
617+
if builder.config.test_args().is_empty() {
618+
cargo.env("MIRIFLAGS", "-O -Zmir-opt-level=4 -Cdebug-assertions=yes");
619+
// Optimizations can change backtraces
620+
cargo.env("MIRI_SKIP_UI_CHECKS", "1");
621+
// Optimizations can change error locations and remove UB so don't run `fail` tests.
622+
cargo.args(&["tests/pass", "tests/panic"]);
623+
624+
let mut cargo = prepare_cargo_test(cargo, &[], &[], "miri", compiler, target, builder);
625+
{
626+
let _time = util::timeit(&builder);
627+
builder.run(&mut cargo);
628+
}
629+
}
630+
616631
// # Run `cargo miri test`.
617632
// This is just a smoke test (Miri's own CI invokes this in a bunch of different ways and ensures
618633
// that we get the desired output), but that is sufficient to make sure that the libtest harness
@@ -644,8 +659,10 @@ impl Step for Miri {
644659
cargo.env("RUST_BACKTRACE", "1");
645660

646661
let mut cargo = Command::from(cargo);
647-
let _time = util::timeit(&builder);
648-
builder.run(&mut cargo);
662+
{
663+
let _time = util::timeit(&builder);
664+
builder.run(&mut cargo);
665+
}
649666
}
650667
}
651668

0 commit comments

Comments
 (0)
Please sign in to comment.