We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d0346c5 commit 596908bCopy full SHA for 596908b
src/bootstrap/mk/Makefile.in
@@ -53,11 +53,15 @@ check-aux:
53
src/tools/cargotest \
54
$(BOOTSTRAP_ARGS)
55
# Run standard library tests in Miri.
56
- $(Q)$(BOOTSTRAP) miri --stage 2 \
+ # 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 \
60
library/core \
61
library/alloc \
62
--no-doc
63
# Some doctests have intentional memory leaks.
64
+ # Also, they work only on the host.
65
$(Q)MIRIFLAGS="-Zmiri-ignore-leaks -Zmiri-disable-isolation" \
66
$(BOOTSTRAP) miri --stage 2 \
67
0 commit comments