Skip to content
This repository was archived by the owner on Apr 28, 2025. It is now read-only.

Commit 9beac39

Browse files
committed
Disable musl reference tests on OSX
1 parent c284b71 commit 9beac39

File tree

1 file changed

+8
-3
lines changed

1 file changed

+8
-3
lines changed

ci/run.sh

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,17 @@
33
set -ex
44
TARGET=$1
55

6+
OTHER="musl-reference-tests"
7+
if [ "$TARGET" = "x86_64-apple-darwin" ] || [ "$TARGET" = "i686-apple-darwin" ] ; then
8+
# FIXME: disable musl-reference-tests on OSX
9+
OTHER=""
10+
fi
11+
612
cargo test --target $TARGET
713
cargo test --target $TARGET --release
814

9-
cargo test --features 'checked musl-reference-tests' --target $TARGET
10-
11-
cargo test --features 'checked musl-reference-tests' --target $TARGET --release
15+
cargo test --features 'checked ${OTHER}' --target $TARGET
16+
cargo test --features 'checked ${OTHER}' --target $TARGET --release
1217

1318
if [ "$TARGET" = "x86_64-unknown-linux-gnu" ] || [ "${TARGET}" = "x86_64-apple-darwin" ]; then
1419
(

0 commit comments

Comments
 (0)