Pillow/Tests/check_fli_overflow.py
2019-11-26 07:03:23 +11:00

20 lines
380 B
Python

import unittest
from PIL import Image
from .helper import PillowTestCase
TEST_FILE = "Tests/images/fli_overflow.fli"
class TestFliOverflow(PillowTestCase):
def test_fli_overflow(self):
# this should not crash with a malloc error or access violation
with Image.open(TEST_FILE) as im:
im.load()
if __name__ == "__main__":
unittest.main()