mirror of
https://github.com/python-pillow/Pillow.git
synced 2024-11-10 19:56:47 +03:00
17 lines
360 B
Python
17 lines
360 B
Python
from helper import unittest, PillowTestCase
|
|
from PIL import Image
|
|
|
|
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()
|
|
|
|
|
|
if __name__ == '__main__':
|
|
unittest.main()
|