diff options
author | Alon Zakai <azakai@google.com> | 2024-10-02 16:07:56 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-10-02 16:07:56 -0700 |
commit | 7e1413902d74111898419b9ed5add45429fa62f8 (patch) | |
tree | d70aee2ff4b45fc809e086e5a26dabcbddac0a54 /scripts | |
parent | 347fc8a57dcfd9361b05f271a7f2badc929500cf (diff) | |
download | binaryen-7e1413902d74111898419b9ed5add45429fa62f8.tar.gz binaryen-7e1413902d74111898419b9ed5add45429fa62f8.tar.bz2 binaryen-7e1413902d74111898419b9ed5add45429fa62f8.zip |
Fuzz Wasm Exceptions in V8 (#6981)
The blocking bug https://issues.chromium.org/issues/332931390 has been
fixed.
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/fuzz_opt.py | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/scripts/fuzz_opt.py b/scripts/fuzz_opt.py index 2bf4086db..1e29a8422 100755 --- a/scripts/fuzz_opt.py +++ b/scripts/fuzz_opt.py @@ -838,9 +838,7 @@ class CompareVMs(TestCaseHandler): # V8 does not support shared memories when running with # shared-everything enabled, so do not fuzz shared-everything # for now. - # Due to the V8 bug https://issues.chromium.org/issues/332931390 - # we do not fuzz exception-handling either. - return all_disallowed(['shared-everything', 'exception-handling']) + return all_disallowed(['shared-everything']) def can_compare_to_self(self): # With nans, VM differences can confuse us, so only very simple VMs |