Pillow/Tests/check_libtiff_segfault.py
2020-03-28 12:51:28 +11:00

15 lines
321 B
Python

import pytest
from PIL import Image
TEST_FILE = "Tests/images/libtiff_segfault.tif"
def test_libtiff_segfault():
""" This test should not segfault. It will on Pillow <= 3.1.0 and
libtiff >= 4.0.0
"""
with pytest.raises(IOError):
with Image.open(TEST_FILE) as im:
im.load()