Skip to content
Snippets Groups Projects
Commit 69784400 authored by Alex Crichton's avatar Alex Crichton
Browse files

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
parent 4d7fa243
No related branches found
No related tags found
No related merge requests found
......@@ -7,5 +7,9 @@ shift
dir=$(dirname $me)
file=$(basename $me)
if echo $file | grep -q wasm; then
exit 0 # FIXME(rust-lang/cargo#4750)
fi
cd $dir
exec node $file "$@"
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment