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.
18 lines
526 B
Python
18 lines
526 B
Python
# -*- coding: utf-8 -*-
|
|
|
|
from system_tests import CaseMeta, path
|
|
|
|
class Sony2FpTest(metaclass=CaseMeta):
|
|
|
|
filename = path("$data_path/exiv2-pr906.exv")
|
|
commands = ["$exiv2 -pa --grep Sony2Fp $filename"]
|
|
|
|
stdout = ["""Exif.Sony2Fp.AmbientTemperature SByte 1 19
|
|
Exif.Sony2Fp.FocusMode Byte 1 6
|
|
Exif.Sony2Fp.AFAreaMode Byte 1 12
|
|
Exif.Sony2Fp.FocusPosition2 Byte 1 140
|
|
"""
|
|
]
|
|
stderr = [""]
|
|
retval = [0]
|