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.
17 lines
405 B
Python
17 lines
405 B
Python
# -*- coding: utf-8 -*-
|
|
|
|
import system_tests
|
|
from system_tests import CaseMeta, path
|
|
|
|
class TestVerboseExtractStdoutMultiFile(metaclass=CaseMeta):
|
|
|
|
filename = path("$data_path/exiv2-empty.jpg")
|
|
commands = ["$exiv2 --verbose --extract X- $filename $filename"]
|
|
|
|
stdout = [""""""]
|
|
|
|
stderr = ["""exiv2: Only one file is allowed when extracting to stdout
|
|
"""]
|
|
retval = [1]
|
|
|