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.
20 lines
631 B
Python
20 lines
631 B
Python
7 years ago
|
# -*- coding: utf-8 -*-
|
||
|
|
||
|
import system_tests
|
||
|
|
||
|
class CheckRegularExpressionSupport(metaclass=system_tests.CaseMeta):
|
||
|
|
||
|
url = "http://dev.exiv2.org/issues/1024"
|
||
|
|
||
|
filename = system_tests.path("$data_path/exiv2-bug1024.exv")
|
||
|
commands = [ "$exiv2 -pa --grep gpsl/i $filename" ]
|
||
|
|
||
|
stdout = [ """Exif.GPSInfo.GPSLatitudeRef Ascii 2 North
|
||
|
Exif.GPSInfo.GPSLatitude Rational 3 52deg 3.81700'
|
||
|
Exif.GPSInfo.GPSLongitudeRef Ascii 2 East
|
||
|
Exif.GPSInfo.GPSLongitude Rational 3 1deg 13.81940'
|
||
|
"""
|
||
|
]
|
||
|
stderr = [""]
|
||
|
retval = [0]
|