We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1b67f8b commit a287d1bCopy full SHA for a287d1b
src/bootstrap/test.rs
@@ -620,6 +620,8 @@ impl Step for Miri {
620
cargo.env("MIRIFLAGS", "-O -Zmir-opt-level=4 -Cdebug-assertions=yes");
621
// Optimizations can change backtraces
622
cargo.env("MIRI_SKIP_UI_CHECKS", "1");
623
+ // `MIRI_SKIP_UI_CHECKS` and `MIRI_BLESS` are incompatible
624
+ cargo.env_remove("MIRI_BLESS");
625
// Optimizations can change error locations and remove UB so don't run `fail` tests.
626
cargo.args(&["tests/pass", "tests/panic"]);
627
0 commit comments