Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit a88fc0e

Browse files
committedJun 1, 2025·
Auto merge of #141860 - RalfJung:miri-sync, r=RalfJung
Miri subtree update r? `@ghost` Includes rust-lang/miri#4370 to unbreak PR CI. (So we're committing to having bda28aa38 in the Miri history by landing this, whether or not that Miri PR lands.) Cc `@Noratrieb` `@tiif`
2 parents 9b0268a + 0884c68 commit a88fc0e

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

41 files changed

+1300
-246
lines changed
 

‎src/tools/miri/cargo-miri/src/phases.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ pub fn phase_cargo_miri(mut args: impl Iterator<Item = String>) {
9090
"`cargo miri` supports the following subcommands: `run`, `test`, `nextest`, `clean`, and `setup`."
9191
),
9292
};
93-
let verbose = num_arg_flag("-v");
93+
let verbose = num_arg_flag("-v") + num_arg_flag("--verbose");
9494
let quiet = has_arg_flag("-q") || has_arg_flag("--quiet");
9595

9696
// Determine the involved architectures.

‎src/tools/miri/ci/ci.sh

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -142,12 +142,12 @@ case $HOST_TARGET in
142142
# Host
143143
GC_STRESS=1 MIR_OPT=1 MANY_SEEDS=64 TEST_BENCH=1 CARGO_MIRI_ENV=1 run_tests
144144
# Extra tier 1
145-
# With reduced many-seed count to avoid spending too much time on that.
146-
# (All OSes and ABIs are run with 64 seeds at least once though via the macOS runner.)
147-
MANY_SEEDS=16 TEST_TARGET=i686-unknown-linux-gnu run_tests
148-
MANY_SEEDS=16 TEST_TARGET=aarch64-unknown-linux-gnu run_tests
149-
MANY_SEEDS=16 TEST_TARGET=x86_64-apple-darwin run_tests
150-
MANY_SEEDS=16 TEST_TARGET=x86_64-pc-windows-gnu run_tests
145+
MANY_SEEDS=64 TEST_TARGET=i686-unknown-linux-gnu run_tests
146+
MANY_SEEDS=64 TEST_TARGET=aarch64-unknown-linux-gnu run_tests
147+
MANY_SEEDS=64 TEST_TARGET=x86_64-apple-darwin run_tests
148+
MANY_SEEDS=64 TEST_TARGET=x86_64-pc-windows-gnu run_tests
149+
# Extra tier 1 candidate
150+
MANY_SEEDS=64 TEST_TARGET=aarch64-pc-windows-msvc run_tests
151151
;;
152152
aarch64-apple-darwin)
153153
# Host
@@ -156,7 +156,8 @@ case $HOST_TARGET in
156156
MANY_SEEDS=64 TEST_TARGET=i686-pc-windows-gnu run_tests
157157
MANY_SEEDS=64 TEST_TARGET=x86_64-pc-windows-msvc CARGO_MIRI_ENV=1 run_tests
158158
# Extra tier 2
159-
MANY_SEEDS=16 TEST_TARGET=arm-unknown-linux-gnueabi run_tests
159+
MANY_SEEDS=16 TEST_TARGET=arm-unknown-linux-gnueabi run_tests # 32bit ARM
160+
MANY_SEEDS=16 TEST_TARGET=aarch64-pc-windows-gnullvm run_tests # gnullvm ABI
160161
MANY_SEEDS=16 TEST_TARGET=s390x-unknown-linux-gnu run_tests # big-endian architecture of choice
161162
# Not officially supported tier 2
162163
MANY_SEEDS=16 TEST_TARGET=mips-unknown-linux-gnu run_tests # a 32bit big-endian target, and also a target without 64bit atomics
@@ -178,7 +179,7 @@ case $HOST_TARGET in
178179
# Host
179180
# Without GC_STRESS and with reduced many-seeds count as this is the slowest runner.
180181
# (The macOS runner checks windows-msvc with full many-seeds count.)
181-
MIR_OPT=1 MANY_SEEDS=16 TEST_BENCH=1 run_tests
182+
MIR_OPT=1 MANY_SEEDS=64 TEST_BENCH=1 run_tests
182183
# Extra tier 1
183184
# We really want to ensure a Linux target works on a Windows host,
184185
# and a 64bit target works on a 32bit host.

0 commit comments

Comments
 (0)
Please sign in to comment.