mirror of https://github.com/google/oss-fuzz.git
soupsieve: catch recursion errors (#9205)
This commit is contained in:
parent
afd8a78b0b
commit
29460d2212
|
@ -40,6 +40,10 @@ def TestOneInput(data):
|
|||
sv.select(soupsieve_str, the_soup)
|
||||
except sv.SelectorSyntaxError:
|
||||
pass
|
||||
except RecursionError:
|
||||
# Not interesting
|
||||
# Fixes, e.g. https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=54288
|
||||
pass
|
||||
except NotImplementedError:
|
||||
# Not implemented
|
||||
# Catches e.g. https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=54276
|
||||
|
|
Loading…
Reference in New Issue