Skip to content

Commit 33f65fd

Browse files
authored
Merge pull request #89 from bjorn3/fix_core_testing
Fix core testing
2 parents 3482348 + c7ba645 commit 33f65fd

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

ci-test.sh

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,15 +18,16 @@ core)
1818
# A 64bit little-endian and a 32bit big-endian target.
1919
# (Varying the OS is totally pointless for core.)
2020
for TARGET in x86_64-unknown-linux-gnu mips-unknown-linux-gnu; do
21-
echo "::group::Testing core ($TARGET, no validation, no Stacked Borrows, symbolic alignment)"
21+
# There are no library tests in core, and the integration tests are in a separate crate.
22+
echo "::group::Testing coretests ($TARGET, no validation, no Stacked Borrows, symbolic alignment)"
2223
MIRIFLAGS="$DEFAULTFLAGS -Zmiri-disable-validation -Zmiri-disable-stacked-borrows -Zmiri-symbolic-alignment-check" \
23-
./run-test.sh core --target $TARGET --lib --tests \
24+
./run-test.sh coretests --target $TARGET --tests \
2425
-- --skip align \
2526
2>&1 | ts -i '%.s '
2627
echo "::endgroup::"
27-
echo "::group::Testing core ($TARGET)"
28+
echo "::group::Testing coretests ($TARGET)"
2829
MIRIFLAGS="$DEFAULTFLAGS" \
29-
./run-test.sh core --target $TARGET --lib --tests \
30+
./run-test.sh coretests --target $TARGET --tests \
3031
2>&1 | ts -i '%.s '
3132
echo "::endgroup::"
3233
echo "::group::Testing core docs ($TARGET)" && echo

0 commit comments

Comments
 (0)