From d2ac311e0eace877fda1a59a573f26c0b6b70435 Mon Sep 17 00:00:00 2001 From: Frank Denis Date: Sat, 29 Jul 2023 20:40:51 +0200 Subject: [PATCH] Remove WAVM This is very sad, but what used to be the best WebAssembly runtime now appears to be abandoned. --- test/default/wasi-test-wrapper.sh | 6 ------ 1 file changed, 6 deletions(-) diff --git a/test/default/wasi-test-wrapper.sh b/test/default/wasi-test-wrapper.sh index 4431a4cf..5c3cea76 100755 --- a/test/default/wasi-test-wrapper.sh +++ b/test/default/wasi-test-wrapper.sh @@ -28,12 +28,6 @@ if [ -z "$WASI_RUNTIME" ] || [ "$WASI_RUNTIME" = "wasmtime" ]; then fi fi -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" = "bun" ]; then if echo | bun help >/dev/null 2>&1; then {