File tree Expand file tree Collapse file tree 2 files changed +6
-4
lines changed
docker/host-x86_64/x86_64-gnu-tools Expand file tree Collapse file tree 2 files changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -53,8 +53,8 @@ MIRIFLAGS="-Zmiri-force-intrinsic-fallback --cfg force_intrinsic_fallback -O -Zm
5353case $HOST_TARGET in
5454 x86_64-unknown-linux-gnu)
5555 # Only this branch runs in PR CI.
56- # Fully test all main OSes, including a 32bit target .
57- python3 " $X_PY " test --stage 2 src/tools/miri src/tools/miri/cargo-miri --target x86_64 -apple-darwin
56+ # Fully test all main OSes, and all main architectures .
57+ python3 " $X_PY " test --stage 2 src/tools/miri src/tools/miri/cargo-miri --target aarch64 -apple-darwin
5858 python3 " $X_PY " test --stage 2 src/tools/miri src/tools/miri/cargo-miri --target i686-pc-windows-msvc
5959 # Only run "pass" tests for the remaining targets, which is quite a bit faster.
6060 python3 " $X_PY " test --stage 2 src/tools/miri --target x86_64-pc-windows-gnu --test-args pass
@@ -69,7 +69,7 @@ case $HOST_TARGET in
6969 # FIXME: Re-enable this once CI issues are fixed
7070 # See <https://github.com/rust-lang/rust/issues/127883>
7171 # For now, these tests are moved to `x86_64-msvc-ext2` in `src/ci/github-actions/jobs.yml`.
72- # python3 "$X_PY" test --stage 2 src/tools/miri --target aarch64 -apple-darwin --test-args pass
72+ # python3 "$X_PY" test --stage 2 src/tools/miri --target x86_64 -apple-darwin --test-args pass
7373 ;;
7474 * )
7575 echo " FATAL: unexpected host $HOST_TARGET "
Original file line number Diff line number Diff line change @@ -530,11 +530,13 @@ auto:
530530 - name : x86_64-msvc-ext2
531531 env :
532532 SCRIPT : >
533- python x.py test --stage 2 src/tools/miri --target aarch64 -apple-darwin --test-args pass &&
533+ python x.py test --stage 2 src/tools/miri --target x86_64 -apple-darwin --test-args pass &&
534534 python x.py test --stage 2 src/tools/miri --target x86_64-pc-windows-gnu --test-args pass &&
535535 python x.py miri --stage 2 library/core --test-args notest &&
536536 python x.py miri --stage 2 library/alloc --test-args notest &&
537537 python x.py miri --stage 2 library/std --test-args notest
538+ # The last 3 lines smoke-test `x.py miri`. This doesn't run any actual tests (that would take
539+ # too long), but it ensures that the crates build properly when tested with Miri.
538540 RUST_CONFIGURE_ARGS : --build=x86_64-pc-windows-msvc --enable-lld
539541 << : *job-windows
540542
You can’t perform that action at this time.
0 commit comments