mirror of
https://github.com/python-pillow/Pillow.git
synced 2024-11-11 04:07:21 +03:00
20 lines
380 B
Python
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()
|