Pillow/Tests/test_sgi_crash.py
2020-08-08 22:39:29 +03:00

16 lines
339 B
Python

#!/usr/bin/env python
import pytest
from PIL import Image
@pytest.mark.parametrize(
"test_file",
["Tests/images/sgi_overrun_expandrowF04.bin", "Tests/images/sgi_crash.bin"],
)
def test_crashes(test_file):
with open(test_file, "rb") as f:
im = Image.open(f)
with pytest.raises(OSError):
im.load()