@@ -58,9 +58,8 @@ case $HOST_TARGET in
58
58
# Strangely, Linux targets do not work here. cargo always says
59
59
# "error: cannot produce cdylib for ... as the target ... does not support these crate types".
60
60
# Only run "pass" tests, which is quite a bit faster.
61
- # FIXME: Re-enable this once CI issues are fixed
62
- # python3 "$X_PY" test --stage 2 src/tools/miri --target aarch64-apple-darwin --test-args pass
63
- # python3 "$X_PY" test --stage 2 src/tools/miri --target i686-pc-windows-gnu --test-args pass
61
+ python3 " $X_PY " test --stage 2 src/tools/miri --target aarch64-apple-darwin --test-args pass
62
+ python3 " $X_PY " test --stage 2 src/tools/miri --target i686-pc-windows-gnu --test-args pass
64
63
;;
65
64
* )
66
65
echo " FATAL: unexpected host $HOST_TARGET "
@@ -69,10 +68,6 @@ case $HOST_TARGET in
69
68
esac
70
69
# Also smoke-test `x.py miri`. This doesn't run any actual tests (that would take too long),
71
70
# but it ensures that the crates build properly when tested with Miri.
72
-
73
- # FIXME: Re-enable this for msvc once CI issues are fixed
74
- if [ " $HOST_TARGET " != " x86_64-pc-windows-msvc" ]; then
75
- python3 " $X_PY " miri --stage 2 library/core --test-args notest
76
- python3 " $X_PY " miri --stage 2 library/alloc --test-args notest
77
- python3 " $X_PY " miri --stage 2 library/std --test-args notest
78
- fi
71
+ python3 " $X_PY " miri --stage 2 library/core --test-args notest
72
+ python3 " $X_PY " miri --stage 2 library/alloc --test-args notest
73
+ python3 " $X_PY " miri --stage 2 library/std --test-args notest
0 commit comments