Skip to content

Commit 86712fd

Browse files
committed
HACK: Try always setting -Zmiri-provenance-gc=1
1 parent 1b7e1c0 commit 86712fd

File tree

2 files changed

+2
-6
lines changed

2 files changed

+2
-6
lines changed

src/bootstrap/src/core/build_steps/test.rs

+2
Original file line numberDiff line numberDiff line change
@@ -647,6 +647,8 @@ impl Step for Miri {
647647
// Set the target.
648648
cargo.env("MIRI_TEST_TARGET", target.rustc_target_arg());
649649

650+
cargo.env("MIRIFLAGS", "-Zmiri-provenance-gc=1");
651+
650652
// This can NOT be `run_cargo_test` since the Miri test runner
651653
// does not understand the flags added by `add_flags_and_try_run_test`.
652654
let mut cargo = prepare_cargo_test(cargo, &[], &[], "miri", compiler, target, builder);

src/ci/docker/host-x86_64/x86_64-gnu-tools/checktools.sh

-6
Original file line numberDiff line numberDiff line change
@@ -25,12 +25,6 @@ cat /tmp/toolstate/toolstates.json
2525
python3 "$X_PY" test --stage 2 check-tools
2626
python3 "$X_PY" test --stage 2 src/tools/clippy
2727
python3 "$X_PY" test --stage 2 src/tools/rustfmt
28-
29-
if [[ "$HOST_TARGET" == "x86_64-unknown-linux-gnu" ]]; then
30-
# Set the GC interval to 1 on Linux (run the GC every basic block).
31-
# This makes it much more likely we will see GC bugs (the default is every 10000 blocks).
32-
export MIRIFLAGS=-Zmiri-provenance-gc=1
33-
fi
3428
python3 "$X_PY" test --stage 2 src/tools/miri
3529
# We natively run this script on x86_64-unknown-linux-gnu and x86_64-pc-windows-msvc.
3630
# Also cover some other targets via cross-testing, in particular all tier 1 targets.

0 commit comments

Comments
 (0)