diff options
author | Alon Zakai <azakai@google.com> | 2024-11-25 12:28:35 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-11-25 12:28:35 -0800 |
commit | 8265573e14182ee7fd95d78e9c04c435486be9dc (patch) | |
tree | 9764fe310e03ce6390fec3ecca28ee2cd881edb5 | |
parent | a2a8d2a3a067a23c547b51b4544a933f77a1c03c (diff) | |
download | binaryen-8265573e14182ee7fd95d78e9c04c435486be9dc.tar.gz binaryen-8265573e14182ee7fd95d78e9c04c435486be9dc.tar.bz2 binaryen-8265573e14182ee7fd95d78e9c04c435486be9dc.zip |
[Fuzzing] Maximize fuzzing of CompareVMs (#7113)
This increases our testing of V8, and helps find bugs where we are
different than V8.
-rwxr-xr-x | scripts/fuzz_opt.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/fuzz_opt.py b/scripts/fuzz_opt.py index d6a392129..299403837 100755 --- a/scripts/fuzz_opt.py +++ b/scripts/fuzz_opt.py @@ -801,7 +801,7 @@ class FuzzExec(TestCaseHandler): class CompareVMs(TestCaseHandler): - frequency = 0.66 + frequency = 1 def __init__(self): super(CompareVMs, self).__init__() |