Skip to content
Merged
Changes from 2 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
8 changes: 4 additions & 4 deletions ci-test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -18,15 +18,15 @@ core)
# A 64bit little-endian and a 32bit big-endian target.
# (Varying the OS is totally pointless for core.)
for TARGET in x86_64-unknown-linux-gnu mips-unknown-linux-gnu; do
echo "::group::Testing core ($TARGET, no validation, no Stacked Borrows, symbolic alignment)"
echo "::group::Testing coretests ($TARGET, no validation, no Stacked Borrows, symbolic alignment)"
MIRIFLAGS="$DEFAULTFLAGS -Zmiri-disable-validation -Zmiri-disable-stacked-borrows -Zmiri-symbolic-alignment-check" \
./run-test.sh core --target $TARGET --lib --tests \
./run-test.sh coretests --target $TARGET --tests \
-- --skip align \
2>&1 | ts -i '%.s '
echo "::endgroup::"
echo "::group::Testing core ($TARGET)"
echo "::group::Testing coretests ($TARGET)"
MIRIFLAGS="$DEFAULTFLAGS" \
./run-test.sh core --target $TARGET --lib --tests \
./run-test.sh coretests --target $TARGET --tests \
2>&1 | ts -i '%.s '
echo "::endgroup::"
echo "::group::Testing core docs ($TARGET)" && echo
Expand Down