about summary refs log tree commit diff
diff options
context:
space:
mode:
authorTomasz Miąsko <tomasz.miasko@gmail.com>2020-07-06 00:00:00 +0000
committerTomasz Miąsko <tomasz.miasko@gmail.com>2020-07-06 00:16:12 +0200
commit5fa19ad2bb7e6af6f05a299f2ab0120c6d2e4c54 (patch)
treea91ff73c1d0ae79b1e5f44917b6455dce539d60d
parent0cd7ff7ddfb75a38dca81ad3e76b1e984129e939 (diff)
downloadrust-5fa19ad2bb7e6af6f05a299f2ab0120c6d2e4c54.tar.gz
rust-5fa19ad2bb7e6af6f05a299f2ab0120c6d2e4c54.zip
Remove unused RUSTC_DEBUG_ASSERTIONS
Since #73374 the rustc wrapper no longer configures debug assertions
based on RUSTC_DEBUG_ASSERTIONS environment variable.
-rw-r--r--src/bootstrap/test.rs2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/bootstrap/test.rs b/src/bootstrap/test.rs
index 77bcc00d75b..31253255809 100644
--- a/src/bootstrap/test.rs
+++ b/src/bootstrap/test.rs
@@ -397,8 +397,6 @@ impl Step for Miri {
             cargo.env("MIRI", &miri);
             // Debug things.
             cargo.env("RUST_BACKTRACE", "1");
-            // Overwrite bootstrap's `rustc` wrapper overwriting our flags.
-            cargo.env("RUSTC_DEBUG_ASSERTIONS", "true");
             // Let cargo-miri know where xargo ended up.
             cargo.env("XARGO_CHECK", builder.out.join("bin").join("xargo-check"));