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
53
53
case $HOST_TARGET in
54
54
x86_64-unknown-linux-gnu)
55
55
# 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
58
58
python3 " $X_PY " test --stage 2 src/tools/miri src/tools/miri/cargo-miri --target i686-pc-windows-msvc
59
59
# Only run "pass" tests for the remaining targets, which is quite a bit faster.
60
60
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
69
69
# FIXME: Re-enable this once CI issues are fixed
70
70
# See <https://github.com/rust-lang/rust/issues/127883>
71
71
# 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
73
73
;;
74
74
* )
75
75
echo " FATAL: unexpected host $HOST_TARGET "
Original file line number Diff line number Diff line change @@ -530,11 +530,13 @@ auto:
530
530
- name : x86_64-msvc-ext2
531
531
env :
532
532
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 &&
534
534
python x.py test --stage 2 src/tools/miri --target x86_64-pc-windows-gnu --test-args pass &&
535
535
python x.py miri --stage 2 library/core --test-args notest &&
536
536
python x.py miri --stage 2 library/alloc --test-args notest &&
537
537
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.
538
540
RUST_CONFIGURE_ARGS : --build=x86_64-pc-windows-msvc --enable-lld
539
541
<< : *job-windows
540
542
You can’t perform that action at this time.
0 commit comments