2019-11-21 05:42:52 +03:00
|
|
|
import unittest
|
|
|
|
|
2016-01-14 15:59:19 +03:00
|
|
|
from PIL import Image
|
|
|
|
|
2019-11-21 05:42:52 +03:00
|
|
|
from .helper import PillowTestCase
|
2019-07-06 23:40:53 +03:00
|
|
|
|
2016-01-14 15:59:19 +03:00
|
|
|
TEST_FILE = "Tests/images/libtiff_segfault.tif"
|
|
|
|
|
2016-02-05 01:57:13 +03:00
|
|
|
|
2016-01-14 15:59:19 +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
|
|
|
|
"""
|
|
|
|
|
2016-11-06 19:58:45 +03:00
|
|
|
with self.assertRaises(IOError):
|
2019-11-25 23:03:23 +03:00
|
|
|
with Image.open(TEST_FILE) as im:
|
|
|
|
im.load()
|
2016-01-14 15:59:19 +03:00
|
|
|
|
|
|
|
|
2019-06-13 18:53:42 +03:00
|
|
|
if __name__ == "__main__":
|
2016-01-14 15:59:19 +03:00
|
|
|
unittest.main()
|