1
mirror of https://github.com/jedisct1/libsodium.git synced 2024-12-23 20:15:19 -07:00

Lucet requires --min-reserved-size or tests with large allocations will fail

This commit is contained in:
Frank Denis 2019-04-23 01:13:25 +02:00
parent e38128998b
commit 2277e7f4f0

View File

@ -7,5 +7,8 @@ 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 --dir=.:. "$1.so" && exit 0
lucetc-wasi \
--min-reserved-size "128MiB" \
-o "${1}.so" --opt-level best "$1" &&
lucet-wasi --dir=.:. "$1.so" && exit 0
fi