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
492 B
Python
21 lines
492 B
Python
import system_tests
|
|
|
|
|
|
class SegvInPngImageReadMetadata(
|
|
metaclass=system_tests.CaseMeta):
|
|
"""
|
|
Regression test for the bug described in:
|
|
https://github.com/Exiv2/exiv2/issues/789
|
|
"""
|
|
url = "https://github.com/Exiv2/exiv2/issues/789"
|
|
|
|
filename = system_tests.path(
|
|
"$data_path/issue_789_poc1.png"
|
|
)
|
|
commands = ["$exiv2 $filename"]
|
|
stdout = [""]
|
|
stderr = [""]
|
|
retval = [1]
|
|
|
|
compare_stderr = system_tests.check_no_ASAN_UBSAN_errors
|