Skip to content

Commit

Permalink
Overflow error shows up in x86
Browse files Browse the repository at this point in the history
  • Loading branch information
wiredfool committed Mar 14, 2021
1 parent 6189bca commit 0ea1313
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion Tests/oss-fuzz/test_fuzzers.py
Expand Up @@ -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 (
Expand Down

0 comments on commit 0ea1313

Please sign in to comment.