Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions scripts/fuzz_opt.py
Original file line number Diff line number Diff line change
Expand Up @@ -1536,7 +1536,7 @@ def can_run_on_wasm(self, wasm):
# files, which adds coverage for ClusterFuzz (which sometimes runs two wasm
# files in that way).
class Split(TestCaseHandler):
frequency = 1 # TODO: adjust lower when we actually enable this
frequency = 0.1

def handle(self, wasm):
# get the list of function names, some of which we will decide to split
Expand Down Expand Up @@ -2121,8 +2121,7 @@ def handle(self, wasm):
TrapsNeverHappen(),
CtorEval(),
Merge(),
# TODO: enable when stable enough, and adjust |frequency| (see above)
# Split(),
Split(),
RoundtripText(),
ClusterFuzz(),
Two(),
Expand Down
Loading