From e38128998b9a2051bd6d56f08ca54140ef0b03ad Mon Sep 17 00:00:00 2001 From: Frank Denis Date: Tue, 23 Apr 2019 00:47:43 +0200 Subject: [PATCH] lucet --dir=.:. works Current WebAssembly runtimes status: - wasmtime: no tests are failing. - wasmer: 3 tests are failing: sodium_core, sodium_utils2, sodium_utils3 - lucet: 8 tests are failing: core3, pwhash_argon2i, pwhash_argon2id, secretstream, stream, stream2, pwhash_scrypt, pwhash_scrypt_ll --- test/default/wasi-test-wrapper.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/default/wasi-test-wrapper.sh b/test/default/wasi-test-wrapper.sh index e7092107..65014d46 100755 --- a/test/default/wasi-test-wrapper.sh +++ b/test/default/wasi-test-wrapper.sh @@ -7,5 +7,5 @@ if command -v wasmer >/dev/null; then wasmer run "$1" --dir=. && exit 0 fi if command -v lucetc-wasi >/dev/null && command -v lucet-wasi >/dev/null; then - lucetc-wasi -o "${1}.so" --opt-level best "$1" && lucet-wasi "$1.so" && exit 0 + lucetc-wasi -o "${1}.so" --opt-level best "$1" && lucet-wasi --dir=.:. "$1.so" && exit 0 fi