mirror of
https://github.com/python-pillow/Pillow.git
synced 2025-02-03 13:14:27 +03:00
Overflow error shows up in x86
This commit is contained in:
parent
6189bca3bc
commit
0ea13132a2
|
@ -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 (
|
||||
|
|
Loading…
Reference in New Issue
Block a user