Pillow/Tests/check_libtiff_segfault.py

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

16 lines
313 B
Python
Raw Normal View History

import pytest
from PIL import Image
TEST_FILE = "Tests/images/libtiff_segfault.tif"
2016-02-05 01:57:13 +03:00
2020-03-28 04:51:28 +03:00
def test_libtiff_segfault():
2020-08-31 00:37:17 +03:00
"""This test should not segfault. It will on Pillow <= 3.1.0 and
libtiff >= 4.0.0
"""
with pytest.raises(OSError):
2020-03-28 04:51:28 +03:00
with Image.open(TEST_FILE) as im:
im.load()