diff options
author | Alon Zakai <azakai@google.com> | 2021-08-05 15:11:07 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-08-05 15:11:07 -0700 |
commit | c7e5b6f24e0e1fb7afb0b98926a1a08516e83b42 (patch) | |
tree | e95fdc80e80a554bc91ed2f6661001892453451a | |
parent | cbe4b578a639ede260f33fc4ebcde17fcbf4ccc2 (diff) | |
download | binaryen-c7e5b6f24e0e1fb7afb0b98926a1a08516e83b42.tar.gz binaryen-c7e5b6f24e0e1fb7afb0b98926a1a08516e83b42.tar.bz2 binaryen-c7e5b6f24e0e1fb7afb0b98926a1a08516e83b42.zip |
Disable RoundtripText fuzzer until #3989 is fixed (#4058)
-rwxr-xr-x | scripts/fuzz_opt.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/scripts/fuzz_opt.py b/scripts/fuzz_opt.py index 96b142234..cdce33ff5 100755 --- a/scripts/fuzz_opt.py +++ b/scripts/fuzz_opt.py @@ -916,7 +916,8 @@ testcase_handlers = [ CheckDeterminism(), Wasm2JS(), Asyncify(), - RoundtripText() + # FIXME: Re-enable after https://github.com/WebAssembly/binaryen/issues/3989 + # RoundtripText() ] |