summary refs log tree commit diff
path: root/src/bootstrap
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2022-05-30 11:59:55 +0000
committerbors <bors@rust-lang.org>2022-05-30 11:59:55 +0000
commit946a88a989acdcc3b0d05a666eaac0db414ec2cd (patch)
tree6fd3b1c8ff7f0b1ca61366fca83b66057ded1358 /src/bootstrap
parent5c780b98d10f48d6255cf2deb2643194b9221c02 (diff)
parent962d54e5e8e58319ebaea389ab1314d3367c594d (diff)
downloadrust-946a88a989acdcc3b0d05a666eaac0db414ec2cd.tar.gz
rust-946a88a989acdcc3b0d05a666eaac0db414ec2cd.zip
Auto merge of #97546 - RalfJung:miri, r=oli-obk
update Miri

First update with the new ui test suite, let's hope this all works. :)
r? `@oli-obk`

Fixes https://github.com/rust-lang/rust/issues/97486
Diffstat (limited to 'src/bootstrap')
-rw-r--r--src/bootstrap/test.rs6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/bootstrap/test.rs b/src/bootstrap/test.rs
index 99e9e8794e3..b71bf62fe45 100644
--- a/src/bootstrap/test.rs
+++ b/src/bootstrap/test.rs
@@ -572,12 +572,6 @@ impl Step for Miri {
                 return;
             }
 
-            // # Run `cargo test` with `-Zmir-opt-level=4`.
-            cargo.env("MIRIFLAGS", "-O -Zmir-opt-level=4");
-            if !try_run(builder, &mut cargo) {
-                return;
-            }
-
             // # Done!
             builder.save_toolstate("miri", ToolState::TestPass);
         } else {