Browse Source

Add support for WAVM as a WebAssembly runtime

master
Frank Denis 5 years ago
parent
commit
b40674e29a
  1. 6
      test/default/wasi-test-wrapper.sh

6
test/default/wasi-test-wrapper.sh

@ -2,6 +2,12 @@
MAX_MEMORY_TESTS="67108864"
if [ -z "$WASI_RUNTIME" ] || [ "$WASI_RUNTIME" = "wavm" ]; then
if command -v wavm >/dev/null; then
wavm run --abi=wasi "$1" && exit 0
fi
fi
if [ -z "$WASI_RUNTIME" ] || [ "$WASI_RUNTIME" = "wasmtime" ]; then
if command -v wasmtime >/dev/null; then
wasmtime -o --dir=. "$1" && exit 0

Loading…
Cancel
Save