diff options
author | Thomas Lively <tlively@google.com> | 2024-04-29 12:06:18 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-04-29 12:06:18 -0700 |
commit | dcc5b7ba0149a85d2784520c262b83df488705f5 (patch) | |
tree | 923ec137367b3e6d9f5f4e64a66d7e8b5c061b5d | |
parent | 63d308f4f2ce6daae3dd3c6ec0b3808134d8791a (diff) | |
download | binaryen-dcc5b7ba0149a85d2784520c262b83df488705f5.tar.gz binaryen-dcc5b7ba0149a85d2784520c262b83df488705f5.tar.bz2 binaryen-dcc5b7ba0149a85d2784520c262b83df488705f5.zip |
Re-enable fuzzing of text round trips (#6560)
The bug that had been preventing this fuzzing no longer reproduces.
-rwxr-xr-x | scripts/fuzz_opt.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/scripts/fuzz_opt.py b/scripts/fuzz_opt.py index 069db3dea..887b6abe9 100755 --- a/scripts/fuzz_opt.py +++ b/scripts/fuzz_opt.py @@ -1393,8 +1393,7 @@ testcase_handlers = [ TrapsNeverHappen(), CtorEval(), Merge(), - # FIXME: Re-enable after https://github.com/WebAssembly/binaryen/issues/3989 - # RoundtripText() + RoundtripText() ] |