summaryrefslogtreecommitdiff
path: root/scripts/fuzz-wasm2wat.sh
diff options
context:
space:
mode:
authorSam Clegg <sbc@chromium.org>2021-10-13 09:52:25 -0700
committerGitHub <noreply@github.com>2021-10-13 16:52:25 +0000
commit30c1e983d30b33a8004b39fd60cbd64477a7956c (patch)
treecb17fc468d4fab92f961d49c54798051eea8c617 /scripts/fuzz-wasm2wat.sh
parent081f6c21ef0998c21f7b33bc82cfa50d5a4ddfd2 (diff)
downloadwabt-30c1e983d30b33a8004b39fd60cbd64477a7956c.tar.gz
wabt-30c1e983d30b33a8004b39fd60cbd64477a7956c.tar.bz2
wabt-30c1e983d30b33a8004b39fd60cbd64477a7956c.zip
Enable reference types by default (#1729)
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 ref types merged yet so this change disables ref types when running some of those tests. This can be removed in a followup when we update the testsuite.
Diffstat (limited to 'scripts/fuzz-wasm2wat.sh')
-rwxr-xr-xscripts/fuzz-wasm2wat.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/fuzz-wasm2wat.sh b/scripts/fuzz-wasm2wat.sh
index f2bb2d0b..668d275d 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-ref"
+ENABLE="--enable-except --enable-sat --enable-sign --enable-thread --enable-multi --enable-tail"
${FUZZ_BIN_DIR}/afl-fuzz -i fuzz-in/wasm/ -o fuzz-out -- out/gcc-fuzz/Debug/wasm2wat @@ ${ENABLE}