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.
23 lines
401 B
Python
23 lines
401 B
Python
# -*- coding: utf-8 -*-
|
|
|
|
import system_tests
|
|
|
|
|
|
class NotValidIccProfile(metaclass=system_tests.CaseMeta):
|
|
|
|
url = "http://dev.exiv2.org/issues/1247"
|
|
filename = "$data_path/exiv2-bug1247.jpg"
|
|
|
|
commands = [
|
|
"""$exiv2 -pa $filename"""
|
|
]
|
|
|
|
stdout = [""]
|
|
|
|
stderr = [ """Exiv2 exception in print action for file $filename:
|
|
$kerFailedToReadImageData
|
|
"""
|
|
]
|
|
|
|
retval = [1]
|