# -*- 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]