diff options
author | Alon Zakai <azakai@google.com> | 2023-01-03 15:37:53 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-01-03 23:37:53 +0000 |
commit | 6e95580b42993207a4efe225db71efa0db391af4 (patch) | |
tree | cadbbe39d9f58a35e8772702b8ac8029015a3952 | |
parent | e761198190d5c5e6e0a3735c3dab59d02c970e43 (diff) | |
download | binaryen-6e95580b42993207a4efe225db71efa0db391af4.tar.gz binaryen-6e95580b42993207a4efe225db71efa0db391af4.tar.bz2 binaryen-6e95580b42993207a4efe225db71efa0db391af4.zip |
Skip some new initial content in the fuzzer, with imported memories (#5383)
Do not fuzz some new testcases that have imported memories. The fuzzer doesn't seem
to have support for that (it errors when it tries to do operations on them, since the
import hasn't been created).
-rwxr-xr-x | scripts/fuzz_opt.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/scripts/fuzz_opt.py b/scripts/fuzz_opt.py index 57bb4122b..41088d5c8 100755 --- a/scripts/fuzz_opt.py +++ b/scripts/fuzz_opt.py @@ -307,6 +307,9 @@ INITIAL_CONTENTS_IGNORE = [ # TODO: fuzzer support for internalize/externalize 'optimize-instructions-gc-extern.wast', 'gufa-extern.wast', + # the fuzzer does not support imported memories + 'multi-memory-lowering-import.wast', + 'multi-memory-lowering-import-error.wast', ] |