Skip to content

Commit 596908b

Browse files
committed
also test core+alloc on a 32bit big-endian target
1 parent d0346c5 commit 596908b

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

src/bootstrap/mk/Makefile.in

+5-1
Original file line numberDiff line numberDiff line change
@@ -53,11 +53,15 @@ check-aux:
5353
src/tools/cargotest \
5454
$(BOOTSTRAP_ARGS)
5555
# Run standard library tests in Miri.
56-
$(Q)$(BOOTSTRAP) miri --stage 2 \
56+
# We use a 64bit little-endian and a 32bit big-endian target for max coverage.
57+
$(Q)BOOTSTRAP_SKIP_TARGET_SANITY=1 \
58+
$(BOOTSTRAP) miri --stage 2 \
59+
--target x86_64-unknown-linux-gnu,mips-unknown-linux-gnu \
5760
library/core \
5861
library/alloc \
5962
--no-doc
6063
# Some doctests have intentional memory leaks.
64+
# Also, they work only on the host.
6165
$(Q)MIRIFLAGS="-Zmiri-ignore-leaks -Zmiri-disable-isolation" \
6266
$(BOOTSTRAP) miri --stage 2 \
6367
library/core \

0 commit comments

Comments
 (0)