Use \" instead of ' for exiv2 command string

The original failed on some Windows test runs.
main
Jim Easterbrook 4 years ago
parent da3b36f242
commit 2e2dd887e3

@ -1,28 +1,28 @@
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
import system_tests import system_tests
from system_tests import CaseMeta, path from system_tests import CaseMeta, path
class TestXmpDateTimeSetting(metaclass=CaseMeta): class TestXmpDateTimeSetting(metaclass=CaseMeta):
""" """
Test fix for issue 1998. Test fix for issue 1998.
""" """
infile = path("$data_path/issue_1998.xmp") infile = path("$data_path/issue_1998.xmp")
commands = [ commands = [
"$exiv2 -M'set Xmp.xmp.CreateDate XmpText 2021-02-03T12:00:00+01:00' $infile", "$exiv2 -M\"set Xmp.xmp.CreateDate XmpText 2021-02-03T12:00:00+01:00\" $infile",
"$exiv2 -K Xmp.xmp.CreateDate $infile", "$exiv2 -K Xmp.xmp.CreateDate $infile",
"$exiv2 -M'set Xmp.xmp.CreateDate XmpText 2021-02-03T12:34:56+02:00' $infile", "$exiv2 -M\"set Xmp.xmp.CreateDate XmpText 2021-02-03T12:34:56+02:00\" $infile",
"$exiv2 -K Xmp.xmp.CreateDate $infile", "$exiv2 -K Xmp.xmp.CreateDate $infile",
] ]
stdout = [ stdout = [
"""""", "",
"""Xmp.xmp.CreateDate XmpText 25 2021-02-03T12:00:00+01:00 """Xmp.xmp.CreateDate XmpText 25 2021-02-03T12:00:00+01:00
""", """,
"""""", "",
"""Xmp.xmp.CreateDate XmpText 25 2021-02-03T12:34:56+02:00 """Xmp.xmp.CreateDate XmpText 25 2021-02-03T12:34:56+02:00
""", """,
] ]
stderr = [""]*4 stderr = [""]*4
retval = [0]*4 retval = [0]*4

Loading…
Cancel
Save