Skip to content

Commit 6978440

Browse files
committed
Fix wasm tests
Looks like `cargo test` is now trying to test too many files due to rust-lang/cargo#4750 so add a clause to the wrapper to ignore the bogus ones for now
1 parent 4d7fa24 commit 6978440

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

ci/docker/wasm32-unknown-emscripten/node-wrapper.sh

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,9 @@ shift
77
dir=$(dirname $me)
88
file=$(basename $me)
99

10+
if echo $file | grep -q wasm; then
11+
exit 0 # FIXME(rust-lang/cargo#4750)
12+
fi
13+
1014
cd $dir
1115
exec node $file "$@"

0 commit comments

Comments
 (0)