We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1111a72 commit e73a71dCopy full SHA for e73a71d
scripts/run_bench_wasm.sh
@@ -27,5 +27,10 @@ benches=(
27
)
28
29
for bench in ${benches[@]}; do
30
- $RUNTIME run --dir=. $REPO_ROOT/target/bench-wasm/$bench.wasm -- --bench
+ if [[ "$RUNTIME" == "wasmtime" ]]; then
31
+ # https://github.com/bytecodealliance/wasmtime/issues/7384
32
+ $RUNTIME run --dir=. -- $REPO_ROOT/target/bench-wasm/$bench.wasm --bench
33
+ else
34
+ $RUNTIME run --dir=. $REPO_ROOT/target/bench-wasm/$bench.wasm -- --bench
35
+ fi
36
done
0 commit comments