Skip to content

Commit 44d8381

Browse files
committed
Remove --lib from the core test commands
--tests already implies --lib except it doesn't override test=false in Cargo.toml which core has.
1 parent 3482348 commit 44d8381

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ci-test.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,13 +20,13 @@ core)
2020
for TARGET in x86_64-unknown-linux-gnu mips-unknown-linux-gnu; do
2121
echo "::group::Testing core ($TARGET, no validation, no Stacked Borrows, symbolic alignment)"
2222
MIRIFLAGS="$DEFAULTFLAGS -Zmiri-disable-validation -Zmiri-disable-stacked-borrows -Zmiri-symbolic-alignment-check" \
23-
./run-test.sh core --target $TARGET --lib --tests \
23+
./run-test.sh core --target $TARGET --tests \
2424
-- --skip align \
2525
2>&1 | ts -i '%.s '
2626
echo "::endgroup::"
2727
echo "::group::Testing core ($TARGET)"
2828
MIRIFLAGS="$DEFAULTFLAGS" \
29-
./run-test.sh core --target $TARGET --lib --tests \
29+
./run-test.sh core --target $TARGET --tests \
3030
2>&1 | ts -i '%.s '
3131
echo "::endgroup::"
3232
echo "::group::Testing core docs ($TARGET)" && echo

0 commit comments

Comments
 (0)