Skip to content

Commit d1c15ca

Browse files
committed
Update fuzzer seeds
1 parent d055a0d commit d1c15ca

File tree

1 file changed

+18
-1
lines changed

1 file changed

+18
-1
lines changed

python/py-fuzzer/fuzz.py

Lines changed: 18 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,24 @@ def fuzz_code(seed: Seed, args: ResolvedCliArgs) -> FuzzResult:
155155
# TODO(carljm) remove once we debug the slowness of these seeds
156156
skip_check = seed in {120, 160, 335}
157157
# TODO(sharkdp) the following seeds all fail due to cyclic / self-referential type aliaes or generics
158-
skip_check |= seed in {3, 10, 39, 69, 100, 173, 192, 215, 267, 302, 311, 395}
158+
skip_check |= seed in {
159+
3,
160+
10,
161+
39,
162+
69,
163+
100,
164+
110,
165+
173,
166+
187,
167+
192,
168+
215,
169+
267,
170+
284,
171+
302,
172+
311,
173+
357,
174+
395,
175+
}
159176

160177
code = generate_random_code(seed)
161178
bug_found = False

0 commit comments

Comments
 (0)