Skip to content

Commit

Permalink
fuzz: skip keys
Browse files Browse the repository at this point in the history
  • Loading branch information
mzuenni authored and RagnarGrootKoerkamp committed Mar 5, 2024
1 parent bfc22d2 commit 69ba527
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bin/fuzz.py
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ def __init__(self, problem):

# Filter to only keep rules depending on seed.
def add_testcase(t):
if t.in_is_generated and t.generator.uses_seed:
if t.in_is_generated and t.generator.uses_seed and t.parse_error is None:
self.testcase_rules.append(t)

generator_config.root_dir.walk(add_testcase, dir_f=None)
Expand Down

0 comments on commit 69ba527

Please sign in to comment.