forked from Exiv2/exiv2
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
c6f7e48
commit 046dc03
Showing
2 changed files
with
23 additions
and
0 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
# -*- coding: utf-8 -*- | ||
|
||
from system_tests import CaseMeta, path | ||
|
||
class MemoryLeakInPngImagePrintStructure(metaclass=CaseMeta): | ||
""" | ||
Regression test for the bug described in: | ||
https://github.com/Exiv2/exiv2/issues/1817 | ||
Note: the test only fails in an ASAN build. | ||
""" | ||
url = "https://github.com/Exiv2/exiv2/issues/1817" | ||
|
||
filename = path("$data_path/issue_1817_poc.png") | ||
commands = ["$exiv2 -pS $filename"] | ||
stdout = ["""STRUCTURE OF PNG FILE: $filename | ||
address | chunk | length | data | checksum | ||
8 | eXIf | 0 | | 0x00000000 | ||
"""] | ||
stderr = ["""$exiv2_exception_message $filename: | ||
$kerCorruptedMetadata | ||
"""] | ||
retval = [1] |