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
623 B
Python
20 lines
623 B
Python
# -*- 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 4' 0"
|
|
Exif.GPSInfo.GPSLongitudeRef Ascii 2 East
|
|
Exif.GPSInfo.GPSLongitude Rational 3 1deg 14' 0"
|
|
"""
|
|
]
|
|
stderr = [""]
|
|
retval = [0]
|