|
1 | 1 | #!/bin/sh
|
| 2 | +# ignore-tidy-linelength |
2 | 3 |
|
3 | 4 | set -eu
|
4 | 5 |
|
@@ -26,8 +27,26 @@ python3 "$X_PY" test --stage 2 src/tools/clippy
|
26 | 27 | python3 "$X_PY" test --stage 2 src/tools/rustfmt
|
27 | 28 | python3 "$X_PY" test --stage 2 src/tools/miri
|
28 | 29 | # 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. |
30 | 31 | 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 |
33 | 52 | unset BOOTSTRAP_SKIP_TARGET_SANITY
|
0 commit comments