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.
13 lines
342 B
Python
13 lines
342 B
Python
# -*- coding: utf-8 -*-
|
|
|
|
from system_tests import CaseMeta, path
|
|
|
|
class Test_issue_1011(metaclass=CaseMeta):
|
|
|
|
filename = path("$data_path/Jp2Image_readMetadata_loop.poc")
|
|
commands = ["$exiv2 " + filename]
|
|
stdout = [""]
|
|
stderr = ["""$exiv2_exception_message """ + filename + """:
|
|
$kerCorruptedMetadata
|
|
"""]
|
|
retval = [1] |