mirror of
https://github.com/python-pillow/Pillow.git
synced 2025-02-03 21:24:31 +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:
|
with open(path, "rb") as f:
|
||||||
fuzzers.fuzz_image(f.read())
|
fuzzers.fuzz_image(f.read())
|
||||||
assert True
|
assert True
|
||||||
except (OSError, SyntaxError, MemoryError, ValueError, NotImplementedError):
|
except (OSError,
|
||||||
|
SyntaxError,
|
||||||
|
MemoryError,
|
||||||
|
ValueError,
|
||||||
|
NotImplementedError,
|
||||||
|
OverflowError):
|
||||||
# Known exceptions that are through from Pillow
|
# Known exceptions that are through from Pillow
|
||||||
assert True
|
assert True
|
||||||
except (
|
except (
|
||||||
|
|
Loading…
Reference in New Issue
Block a user