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
395 B
Python
21 lines
395 B
Python
7 years ago
|
# -*- coding: utf-8 -*-
|
||
|
|
||
|
import system_tests
|
||
|
|
||
|
|
||
|
class CheckBarometer(metaclass=system_tests.CaseMeta):
|
||
|
|
||
|
url = "http://dev.exiv2.org/issues/1225"
|
||
|
filename = "$data_path/exiv2-bug1225.exv"
|
||
|
|
||
|
commands = [
|
||
|
"$exiv2 -pa --grep Bar $filename"
|
||
|
]
|
||
|
|
||
|
stdout = [
|
||
|
"Exif.Nikon3.BarometerInfo Undefined 12 1583\n"
|
||
|
]
|
||
|
|
||
|
stderr = [""]
|
||
|
retval = [0]
|