diff options
author | Alon Zakai <azakai@google.com> | 2022-10-21 13:23:44 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-21 20:23:44 +0000 |
commit | 32423c6c83882c04ae37e90a18be78aa9db4a242 (patch) | |
tree | ddad6c517ef0849d89cfec500aa8482cd2184bc6 /scripts | |
parent | 8967e4703f815a4c11f671348accd43ec696af7b (diff) | |
download | binaryen-32423c6c83882c04ae37e90a18be78aa9db4a242.tar.gz binaryen-32423c6c83882c04ae37e90a18be78aa9db4a242.tar.bz2 binaryen-32423c6c83882c04ae37e90a18be78aa9db4a242.zip |
Fix fuzzer to ignore externalize/internalize (#5176)
The fuzzer started to fail on the recent externalize/internalize test
that was added in #5175 as we lack interpreter support. Move that to a separate
file and ignore it in the fuzzer for now.
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/fuzz_opt.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/scripts/fuzz_opt.py b/scripts/fuzz_opt.py index e7c9edf9c..078c0824c 100755 --- a/scripts/fuzz_opt.py +++ b/scripts/fuzz_opt.py @@ -294,6 +294,8 @@ INITIAL_CONTENTS_IGNORE = [ 'multi-memories-basics.wasm', 'multi-memories-simd.wasm', 'multi-memories_size.wast', + # TODO: fuzzer support for internalize/externalize + 'optimize-instructions-gc-extern.wast', ] |