Pillow/Tests/check_fli_overflow.py

20 lines
369 B
Python
Raw Normal View History

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
im = Image.open(TEST_FILE)
im.load()
2016-02-05 01:57:13 +03:00
2019-06-13 18:53:42 +03:00
if __name__ == "__main__":
unittest.main()