diff --git a/ci-test.sh b/ci-test.sh index 7e715b4..f21f45d 100644 --- a/ci-test.sh +++ b/ci-test.sh @@ -56,17 +56,15 @@ std) # These are the most OS-specific (among the modules we do not skip). CORE="time:: sync:: thread:: env::" - # FIXME: strict provenance should be possible, but needs - # and a getrandom bump. for TARGET in x86_64-unknown-linux-gnu aarch64-apple-darwin; do - echo "::group::Testing std core ($CORE on $TARGET, permissive provenance)" - MIRIFLAGS="$DEFAULTFLAGS -Zmiri-disable-isolation -Zmiri-permissive-provenance" \ + echo "::group::Testing std core ($CORE on $TARGET)" + MIRIFLAGS="$DEFAULTFLAGS -Zmiri-disable-isolation" \ ./run-test.sh std --target $TARGET --lib --tests \ -- $CORE \ 2>&1 | ts -i '%.s ' echo "::endgroup::" - echo "::group::Testing std core docs ($CORE on $TARGET, ignore leaks, permissive provenance)" - MIRIFLAGS="$DEFAULTFLAGS -Zmiri-ignore-leaks -Zmiri-disable-isolation -Zmiri-permissive-provenance" \ + echo "::group::Testing std core docs ($CORE on $TARGET, ignore leaks)" + MIRIFLAGS="$DEFAULTFLAGS -Zmiri-ignore-leaks -Zmiri-disable-isolation" \ ./run-test.sh std --target $TARGET --doc \ -- $CORE \ 2>&1 | ts -i '%.s '