From f20e6fdad20287527bf3f6922257e2656fae3735 Mon Sep 17 00:00:00 2001 From: Frank Denis Date: Tue, 4 Feb 2020 19:27:09 +0100 Subject: [PATCH] Temporarily remove support for Lucet Lucet doesn't work on MacOS any more, so testing it has become difficult. --- test/default/wasi-test-wrapper.sh | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/test/default/wasi-test-wrapper.sh b/test/default/wasi-test-wrapper.sh index 69d9e6ce..0cef7c73 100755 --- a/test/default/wasi-test-wrapper.sh +++ b/test/default/wasi-test-wrapper.sh @@ -14,15 +14,5 @@ if [ -z "$WASI_RUNTIME" ] || [ "$WASI_RUNTIME" = "wasmer" ]; then fi fi -if [ -z "$WASI_RUNTIME" ] || [ "$WASI_RUNTIME" = "lucet" ]; then - if command -v lucetc-wasi >/dev/null && command -v lucet-wasi >/dev/null; then - lucetc-wasi \ - --reserved-size "${MAX_MEMORY_TESTS}" \ - -o "${1}.so" --opt-level 2 "$1" && - lucet-wasi --dir=.:. --max-heap-size "${MAX_MEMORY_TESTS}" "${1}.so" && - rm -f "${1}.so" && exit 0 - fi -fi - echo "WebAssembly runtime failed" >&2 exit 1