Skip to content

Commit c173689

Browse files
committed
Add skip_check's for the fuzzer panics
1 parent 93b022d commit c173689

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

python/py-fuzzer/fuzz.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -154,6 +154,8 @@ def fuzz_code(seed: Seed, args: ResolvedCliArgs) -> FuzzResult:
154154
"""Return a `FuzzResult` instance describing the fuzzing result from this seed."""
155155
# TODO(carljm) remove once we debug the slowness of these seeds
156156
skip_check = seed in {120, 160, 335}
157+
# TODO(sharkdp) the following seeds all fail due to recursive type aliases
158+
skip_check |= seed in {100, 311, 395}
157159

158160
code = generate_random_code(seed)
159161
bug_found = False

0 commit comments

Comments
 (0)