test262/implementation-contributed/javascriptcore/wasm/test.sh

12 lines
169 B
Bash
Executable File

#!/bin/bash
set -e
set -u
set -x
JSSHELL="${JSSHELL:-jsc}"
find . -name "test_*.js" -type f | sort | \
xargs -n1 -t -I{} "$JSSHELL" -m {}
echo "All tests passed"