Skip to content

Commit d98b5f4

Browse files
committed
quote spaces in commands for Windows
See comments at: open-source-parsers@1a4dc3a
1 parent 4ca9d25 commit d98b5f4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/runjsontests.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ def runAllTests( jsontest_executable_path, input_dir = None,
5454
is_json_checker_test = (input_path in test_jsonchecker) or expect_failure
5555
print('TESTING:', input_path, end=' ')
5656
options = is_json_checker_test and '--json-checker' or ''
57-
pipe = os.popen( "%s%s %s %s" % (
57+
pipe = os.popen( '%s%s %s "%s"' % (
5858
valgrind_path, jsontest_executable_path, options,
5959
input_path) )
6060
process_output = pipe.read()

0 commit comments

Comments
 (0)