-
Notifications
You must be signed in to change notification settings - Fork 282
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2167 from Exiv2/027_omsystem_mn
Initial support for OM System MakerNote
- Loading branch information
Showing
4 changed files
with
134 additions
and
0 deletions.
There are no files selected for viewing
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
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
Binary file not shown.
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,15 @@ | ||
from system_tests import CaseMeta, path | ||
|
||
class OMSystemMakerNote(metaclass=CaseMeta): | ||
""" | ||
Regression test for the bug described in: | ||
https://github.com/Exiv2/exiv2/issues/2126 | ||
""" | ||
url = "https://github.com/Exiv2/exiv2/issues/2126" | ||
|
||
filename = path("$data_path/test_issue_2126.exv") | ||
commands = ["$exiv2 -q -K Exif.Olympus2.CameraID $filename"] | ||
stdout = ["""Exif.Olympus2.CameraID Undefined 32 OM SYSTEM CAMERA | ||
"""] | ||
stderr = [""] | ||
retval = [0] |