Skip to content

Commit 713f941

Browse files
committed
Disable wasm32 simd128 tests
1 parent 932ec8b commit 713f941

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

ci/run.sh

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -77,13 +77,15 @@ case ${TARGET} in
7777
# though node.js (transitively through v8) doesn't have support for the
7878
# full SIMD spec yet, only some functions. As a result only pass in
7979
# some target features and a special `--cfg`
80-
export RUSTFLAGS="${RUSTFLAGS} -C target-feature=+simd128 --cfg only_node_compatible_functions"
81-
cargo_test "--release"
80+
# FIXME: broken
81+
#export RUSTFLAGS="${RUSTFLAGS} -C target-feature=+simd128 --cfg only_node_compatible_functions"
82+
#cargo_test "--release"
8283

8384
# After that passes make sure that all intrinsics compile, passing in
8485
# the extra feature to compile in non-node-compatible SIMD.
85-
export RUSTFLAGS="${RUSTFLAGS} -C target-feature=+simd128,+unimplemented-simd128"
86-
cargo_test "--release --no-run"
86+
# FIXME: broken
87+
#export RUSTFLAGS="${RUSTFLAGS} -C target-feature=+simd128,+unimplemented-simd128"
88+
#cargo_test "--release --no-run"
8789
;;
8890
mips-*gnu* | mipsel-*gnu*)
8991
export RUSTFLAGS="${RUSTFLAGS} -C target-feature=+msa,+fp64,+mips32r5"

0 commit comments

Comments
 (0)