diff options
author | Max Graey <maxgraey@gmail.com> | 2022-06-21 21:37:10 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-06-21 18:37:10 +0000 |
commit | 6f37355ae24449c178abcdb08294d0fb3ef5f50c (patch) | |
tree | 1d886bf3b48126222e9d4c54596165ea9ed33444 | |
parent | bab21052c3e12df7ad2fd3711d0fe6e69e05f449 (diff) | |
download | binaryen-6f37355ae24449c178abcdb08294d0fb3ef5f50c.tar.gz binaryen-6f37355ae24449c178abcdb08294d0fb3ef5f50c.tar.bz2 binaryen-6f37355ae24449c178abcdb08294d0fb3ef5f50c.zip |
Disable Wasm2C in fuzz_opt for now (#4743)
Relates to #4741
-rwxr-xr-x | scripts/fuzz_opt.py | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/scripts/fuzz_opt.py b/scripts/fuzz_opt.py index 54c24be86..15c052937 100755 --- a/scripts/fuzz_opt.py +++ b/scripts/fuzz_opt.py @@ -767,8 +767,10 @@ class CompareVMs(TestCaseHandler): D8(), D8Liftoff(), D8TurboFan(), - Wasm2C(), - Wasm2C2Wasm()] + # FIXME: Temprorary disable. See issue #4741 for more details + # Wasm2C(), + # Wasm2C2Wasm() + ] def handle_pair(self, input, before_wasm, after_wasm, opts): before = self.run_vms(before_wasm) |