Pillow/Tests/check_libtiff_segfault.py

23 lines
480 B
Python
Raw Normal View History

import unittest
from PIL import Image
from .helper import PillowTestCase
TEST_FILE = "Tests/images/libtiff_segfault.tif"
2016-02-05 01:57:13 +03:00
class TestLibtiffSegfault(PillowTestCase):
def test_segfault(self):
""" This test should not segfault. It will on Pillow <= 3.1.0 and
libtiff >= 4.0.0
"""
with self.assertRaises(IOError):
2019-11-25 23:03:23 +03:00
with Image.open(TEST_FILE) as im:
im.load()
2019-06-13 18:53:42 +03:00
if __name__ == "__main__":
unittest.main()