10 lines
237 B
Bash
Executable File
10 lines
237 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
ROOT_DIR="$(cd "$(dirname "$0")/../../.." && pwd)"
|
|
|
|
if [[ "${SKIP_INTERP_BUILD:-0}" != "1" ]]; then
|
|
"$ROOT_DIR/tools/build_wasm_core.sh"
|
|
fi
|
|
node "$ROOT_DIR/tests/wasm/node/verify_interp_wasm.mjs"
|