File tree Expand file tree Collapse file tree 1 file changed +6
-0
lines changed
src/ci/docker/host-x86_64/x86_64-gnu-tools Expand file tree Collapse file tree 1 file changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -25,6 +25,12 @@ cat /tmp/toolstate/toolstates.json
2525python3 " $X_PY " test --stage 2 check-tools
2626python3 " $X_PY " test --stage 2 src/tools/clippy
2727python3 " $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
2834python3 " $X_PY " test --stage 2 src/tools/miri
2935# We natively run this script on x86_64-unknown-linux-gnu and x86_64-pc-windows-msvc.
3036# Also cover some other targets via cross-testing, in particular all tier 1 targets.
You can’t perform that action at this time.
0 commit comments