Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions ci-test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ std)
for TARGET in x86_64-unknown-linux-gnu mips-unknown-linux-gnu aarch64-apple-darwin i686-pc-windows-gnu x86_64-pc-windows-msvc; do
echo "::group::Testing std ($TARGET)"
MIRIFLAGS="$DEFAULTFLAGS -Zmiri-disable-isolation" \
./run-test.sh std --target $TARGET --lib --tests \
./run-test.sh std --target $TARGET --tests \
-- $(for M in $SKIP; do echo "--skip $M "; done) \
2>&1 | ts -i '%.s '
echo "::endgroup::"
Expand All @@ -84,11 +84,11 @@ simd)
echo "::group::Testing portable-simd"
# FIXME: disabling float non-determinism due to <https://github.com/rust-lang/portable-simd/issues/463>.
MIRIFLAGS="$DEFAULTFLAGS -Zmiri-deterministic-floats" \
cargo miri test --lib --tests -- --skip ptr \
cargo miri test --tests -- --skip ptr \
2>&1 | ts -i '%.s '
# This contains some pointer tests that do int/ptr casts, so we need permissive provenance.
MIRIFLAGS="$DEFAULTFLAGS -Zmiri-permissive-provenance" \
cargo miri test --lib --tests -- ptr \
cargo miri test --tests -- ptr \
2>&1 | ts -i '%.s '
echo "::endgroup::"
echo "::group::Testing portable-simd docs"
Expand Down
Loading