mirror of https://github.com/google/oss-fuzz.git
pasta: catch recursion error (#9324)
The type of issue is not interesting. Fixes: https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=54419
This commit is contained in:
parent
7b63e429f2
commit
02c110700c
|
@ -32,7 +32,8 @@ def TestOneInput(data):
|
|||
SyntaxError, # thrown by ast fast
|
||||
ValueError, # thrown by ast fast
|
||||
pasta.base.annotate.AnnotationError, # pasta-thrown error
|
||||
MemoryError # For stack overflows
|
||||
MemoryError, # For stack overflows
|
||||
RecursionError # Not interesting
|
||||
):
|
||||
pass
|
||||
|
||||
|
|
Loading…
Reference in New Issue