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.
15 lines
329 B
Python
15 lines
329 B
Python
from system_tests import CaseMeta, path
|
|
|
|
|
|
class OverreadInCiffDirectoryReadDirectory(metaclass=CaseMeta):
|
|
|
|
filename = path("$data_path/POC-file_issue_1019")
|
|
commands = ["$exiv2 -pv $filename"]
|
|
stdout = [""]
|
|
stderr = [
|
|
"""$exiv2_exception_message $filename:
|
|
$kerOffsetOutOfRange
|
|
"""
|
|
]
|
|
retval = [1]
|