Overflow error shows up in x86

This commit is contained in:
Eric Soroos 2021-03-14 13:32:44 +01:00
parent 6189bca3bc
commit 0ea13132a2

View File

@ -20,7 +20,12 @@ def test_fuzz_images(path):
with open(path, "rb") as f:
fuzzers.fuzz_image(f.read())
assert True
except (OSError, SyntaxError, MemoryError, ValueError, NotImplementedError):
except (OSError,
SyntaxError,
MemoryError,
ValueError,
NotImplementedError,
OverflowError):
# Known exceptions that are through from Pillow
assert True
except (