Skip to content

Commit 0304a1f

Browse files
committed
test(openexr): fix issue with using single quotes in windows tests
Signed-off-by: glowies <[email protected]>
1 parent 21dfe1b commit 0304a1f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

testsuite/openexr-suite/run.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -59,15 +59,15 @@
5959

6060
# Invalid channel name set
6161
command += oiiotool("--create 4x4 3 -d half --compression none --ch left.R=R,G,B -sattrib openexr:ACESContainerPolicy relaxed -o fail.exr")
62-
command += oiiotool("fail.exr --echo 'acesImageContainerFlag for {TOP.filename} is {TOP[acesImageContainerFlag]}'", failureok=True) # should be empty
62+
command += oiiotool("fail.exr --echo \"acesImageContainerFlag for {TOP.filename} is {TOP[acesImageContainerFlag]}\"", failureok=True) # should be empty
6363

6464
# Invalid compression
6565
command += oiiotool("--create 4x4 3 -d half --compression zip -sattrib openexr:ACESContainerPolicy relaxed -o fail.exr")
66-
command += oiiotool("fail.exr --echo 'acesImageContainerFlag for {TOP.filename} is {TOP[acesImageContainerFlag]}'", failureok=True) # should be empty
66+
command += oiiotool("fail.exr --echo \"acesImageContainerFlag for {TOP.filename} is {TOP[acesImageContainerFlag]}\"", failureok=True) # should be empty
6767

6868
# Invalid data type
6969
command += oiiotool("--create 4x4 3 -d float --compression none -sattrib openexr:ACESContainerPolicy relaxed -o fail.exr")
70-
command += oiiotool("fail.exr --echo 'acesImageContainerFlag for {TOP.filename} is {TOP[acesImageContainerFlag]}'", failureok=True) # should be empty
70+
command += oiiotool("fail.exr --echo \"acesImageContainerFlag for {TOP.filename} is {TOP[acesImageContainerFlag]}\"", failureok=True) # should be empty
7171

7272
# Check ACES Container output for strict mode
7373
#

0 commit comments

Comments
 (0)