File tree 1 file changed +6
-2
lines changed
1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -54,30 +54,34 @@ check-aux:
54
54
src/etc/test-float-parse \
55
55
$(BOOTSTRAP_ARGS )
56
56
# Run standard library tests in Miri.
57
- $(Q ) BOOTSTRAP_SKIP_TARGET_SANITY=1 \
58
- $(BOOTSTRAP ) miri --stage 2 \
57
+ $(Q )$(BOOTSTRAP ) miri --stage 2 \
59
58
library/core \
60
59
library/alloc \
60
+ $(BOOTSTRAP_ARGS ) \
61
61
--no-doc
62
62
# Some doctests use file system operations to demonstrate dealing with `Result`.
63
63
$(Q ) MIRIFLAGS=" -Zmiri-disable-isolation" \
64
64
$(BOOTSTRAP ) miri --stage 2 \
65
65
library/core \
66
66
library/alloc \
67
+ $(BOOTSTRAP_ARGS ) \
67
68
--doc
68
69
# In `std` we cannot test everything, so we skip some modules.
69
70
$(Q ) MIRIFLAGS=" -Zmiri-disable-isolation" \
70
71
$(BOOTSTRAP ) miri --stage 2 library/std \
72
+ $(BOOTSTRAP_ARGS ) \
71
73
--no-doc -- \
72
74
--skip fs:: --skip net:: --skip process:: --skip sys::pal::
73
75
$(Q ) MIRIFLAGS=" -Zmiri-disable-isolation" \
74
76
$(BOOTSTRAP ) miri --stage 2 library/std \
77
+ $(BOOTSTRAP_ARGS ) \
75
78
--doc -- \
76
79
--skip fs:: --skip net:: --skip process:: --skip sys::pal::
77
80
# Also test some very target-specific modules on other targets
78
81
# (making sure to cover an i686 target as well).
79
82
$(Q ) MIRIFLAGS=" -Zmiri-disable-isolation" BOOTSTRAP_SKIP_TARGET_SANITY=1 \
80
83
$(BOOTSTRAP ) miri --stage 2 library/std \
84
+ $(BOOTSTRAP_ARGS ) \
81
85
--target aarch64-apple-darwin,i686-pc-windows-msvc \
82
86
--no-doc -- \
83
87
time:: sync:: thread:: env::
You can’t perform that action at this time.
0 commit comments