You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
568 B
Python

# -*- coding: utf-8 -*-
from system_tests import CaseMeta, path
class MrmImageLargeAllocation(metaclass=CaseMeta):
"""
Regression test for the bug described in:
https://github.com/Exiv2/exiv2/pull/943
"""
url = "https://github.com/Exiv2/exiv2/issues/1530"
filename1 = path("$data_path/issue_1530_poc.crw")
filename2 = path("$data_path/issue_1530_poc.exv")
commands = ["$exiv2 in $filename1 $filename2"]
stdout = [""]
stderr = [
"""$filename1: Could not write metadata to file: corrupted image metadata
"""]
retval = [1]