Skip to content

Commit 1a2b2e7

Browse files
committed
Auto merge of #117267 - RalfJung:miri-tests, r=Mark-Simulacrum
update which targets we test Miri on I hope this doesn't cost too much time; running only the "pass" tests should be reasonably fast (1-2 minutes on my system). Fixes #117167
2 parents 608e968 + 1b3fbbb commit 1a2b2e7

File tree

4 files changed

+26
-3
lines changed

4 files changed

+26
-3
lines changed

.github/workflows/ci.yml

+1
Original file line numberDiff line numberDiff line change
@@ -382,6 +382,7 @@ jobs:
382382
- name: x86_64-msvc-ext
383383
env:
384384
SCRIPT: python x.py --stage 2 test src/tools/cargotest src/tools/cargo && src/ci/docker/host-x86_64/x86_64-gnu-tools/checktools.sh x.py /tmp/toolstate/toolstates.json windows
385+
HOST: x86_64-pc-windows-msvc
385386
RUST_CONFIGURE_ARGS: "--build=x86_64-pc-windows-msvc --enable-lld --save-toolstates=/tmp/toolstate/toolstates.json"
386387
DEPLOY_TOOLSTATES_JSON: toolstates-windows.json
387388
os: windows-2019-8core-32gb

src/ci/docker/host-x86_64/x86_64-gnu-tools/Dockerfile

+2
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,8 @@ ENV RUST_CONFIGURE_ARGS \
8383
--build=x86_64-unknown-linux-gnu \
8484
--save-toolstates=/tmp/toolstate/toolstates.json
8585

86+
ENV HOST x86_64-unknown-linux-gnu
87+
8688
ENV SCRIPT /tmp/checktools.sh ../x.py && \
8789
NODE_PATH=`npm root -g` python3 ../x.py test tests/rustdoc-gui --stage 2 \
8890
--test-args "'--no-sandbox --jobs 1'"

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

+22-3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
#!/bin/sh
2+
# ignore-tidy-linelength
23

34
set -eu
45

@@ -26,8 +27,26 @@ python3 "$X_PY" test --stage 2 src/tools/clippy
2627
python3 "$X_PY" test --stage 2 src/tools/rustfmt
2728
python3 "$X_PY" test --stage 2 src/tools/miri
2829
# We natively run this script on x86_64-unknown-linux-gnu and x86_64-pc-windows-msvc.
29-
# Also cover some other targets (on both of these hosts) via cross-testing.
30+
# Also cover some other targets via cross-testing, in particular all tier 1 targets.
3031
export BOOTSTRAP_SKIP_TARGET_SANITY=1 # we don't need `cc` for these targets
31-
python3 "$X_PY" test --stage 2 src/tools/miri --target i686-pc-windows-msvc
32-
python3 "$X_PY" test --stage 2 src/tools/miri --target aarch64-apple-darwin
32+
case $HOST in
33+
x86_64-unknown-linux-gnu)
34+
python3 "$X_PY" test --stage 2 src/tools/miri --target i686-pc-windows-msvc
35+
python3 "$X_PY" test --stage 2 src/tools/miri --target aarch64-apple-darwin
36+
# Only run "pass" tests for the remaining targets, which is quite a bit faster.
37+
python3 "$X_PY" test --stage 2 src/tools/miri --target i686-pc-windows-gnu --test-args pass
38+
python3 "$X_PY" test --stage 2 src/tools/miri --target x86_64-pc-windows-gnu --test-args pass
39+
;;
40+
x86_64-pc-windows-msvc)
41+
python3 "$X_PY" test --stage 2 src/tools/miri --target x86_64-apple-darwin
42+
# Only run "pass" tests for the remaining targets, which is quite a bit faster.
43+
python3 "$X_PY" test --stage 2 src/tools/miri --target i686-unknown-linux-gnu --test-args pass
44+
python3 "$X_PY" test --stage 2 src/tools/miri --target aarch64-unknown-linux-gnu --test-args pass
45+
python3 "$X_PY" test --stage 2 src/tools/miri --target s390x-unknown-linux-gnu --test-args pass
46+
;;
47+
*)
48+
echo "FATAL: unexpected host $HOST"
49+
exit 1
50+
;;
51+
esac
3352
unset BOOTSTRAP_SKIP_TARGET_SANITY

src/ci/github-actions/ci.yml

+1
Original file line numberDiff line numberDiff line change
@@ -582,6 +582,7 @@ jobs:
582582
- name: x86_64-msvc-ext
583583
env:
584584
SCRIPT: python x.py --stage 2 test src/tools/cargotest src/tools/cargo && src/ci/docker/host-x86_64/x86_64-gnu-tools/checktools.sh x.py /tmp/toolstate/toolstates.json windows
585+
HOST: x86_64-pc-windows-msvc
585586
RUST_CONFIGURE_ARGS: --build=x86_64-pc-windows-msvc --enable-lld --save-toolstates=/tmp/toolstate/toolstates.json
586587
DEPLOY_TOOLSTATES_JSON: toolstates-windows.json
587588
<<: *job-windows-8c

0 commit comments

Comments
 (0)