2023-12-21 14:13:31 +03:00
|
|
|
from __future__ import annotations
|
2024-01-20 14:23:03 +03:00
|
|
|
|
2020-02-22 16:06:21 +03:00
|
|
|
import pytest
|
2020-08-07 13:28:33 +03:00
|
|
|
|
2016-01-14 15:59:19 +03:00
|
|
|
from PIL import Image
|
|
|
|
|
|
|
|
TEST_FILE = "Tests/images/libtiff_segfault.tif"
|
|
|
|
|
2016-02-05 01:57:13 +03:00
|
|
|
|
2024-01-19 13:50:27 +03:00
|
|
|
def test_libtiff_segfault() -> None:
|
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
|
|
|
|
"""
|
2016-01-14 15:59:19 +03:00
|
|
|
|
2020-04-07 09:58:21 +03:00
|
|
|
with pytest.raises(OSError):
|
2020-03-28 04:51:28 +03:00
|
|
|
with Image.open(TEST_FILE) as im:
|
|
|
|
im.load()
|