diff options
author | Sam Clegg <sbc@chromium.org> | 2021-10-13 09:33:31 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-13 16:33:31 +0000 |
commit | 081f6c21ef0998c21f7b33bc82cfa50d5a4ddfd2 (patch) | |
tree | ba7c2172b8aab96c5141a31e1be05b4e26cfaf47 /scripts | |
parent | e1b6676d09c315dc974670a0b364143f39d3a7d7 (diff) | |
download | wabt-081f6c21ef0998c21f7b33bc82cfa50d5a4ddfd2.tar.gz wabt-081f6c21ef0998c21f7b33bc82cfa50d5a4ddfd2.tar.bz2 wabt-081f6c21ef0998c21f7b33bc82cfa50d5a4ddfd2.zip |
Enable bulk memory by default (#1728)
This features was finished earlier this year:
https://github.com/WebAssembly/proposals/blob/master/finished-proposals.md
One thing to note is that the version of the spec tests we currently
have in third_party/testsuite doesn't have bulk memory merged yet so
this change disables bulk memory when running some of those tests. This
will be removed in a followup when we update the testsuite.
Fixes: #1717
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/fuzz-wasm2wat.sh | 2 | ||||
-rwxr-xr-x | scripts/fuzz-wat2wasm.sh | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/scripts/fuzz-wasm2wat.sh b/scripts/fuzz-wasm2wat.sh index 2be2b203..f2bb2d0b 100755 --- a/scripts/fuzz-wasm2wat.sh +++ b/scripts/fuzz-wasm2wat.sh @@ -21,6 +21,6 @@ set -o errexit SCRIPT_DIR="$(dirname "$(readlink -f "$0")")" ROOT_DIR="$(dirname "${SCRIPT_DIR}")" -ENABLE="--enable-except --enable-sat --enable-sign --enable-thread --enable-multi --enable-tail --enable-bulk --enable-ref" +ENABLE="--enable-except --enable-sat --enable-sign --enable-thread --enable-multi --enable-tail --enable-ref" ${FUZZ_BIN_DIR}/afl-fuzz -i fuzz-in/wasm/ -o fuzz-out -- out/gcc-fuzz/Debug/wasm2wat @@ ${ENABLE} diff --git a/scripts/fuzz-wat2wasm.sh b/scripts/fuzz-wat2wasm.sh index bcd74c82..729fc0e9 100755 --- a/scripts/fuzz-wat2wasm.sh +++ b/scripts/fuzz-wat2wasm.sh @@ -21,6 +21,6 @@ set -o errexit SCRIPT_DIR="$(dirname "$(readlink -f "$0")")" ROOT_DIR="$(dirname "${SCRIPT_DIR}")" -ENABLE="--enable-except --enable-sat --enable-sign --enable-thread --enable-multi --enable-tail --enable-bulk --enable-ref" +ENABLE="--enable-except --enable-sat --enable-sign --enable-thread --enable-multi --enable-tail --enable-ref" ${FUZZ_BIN_DIR}/afl-fuzz -x fuzz-in/wast.dict -i fuzz-in/wast/ -o fuzz-out -- out/gcc-fuzz/Debug/wat2wasm @@ ${ENABLE} |