commit | d98b5f4230bf84d6282ca635eedebc2e1e0822dc | [log] [tgz] |
---|---|---|
author | Christopher Dunn <cdunn2001@gmail.com> | Fri Jan 09 22:32:10 2015 -0600 |
committer | Christopher Dunn <cdunn2001@gmail.com> | Fri Jan 09 22:32:10 2015 -0600 |
tree | 13f314a44b8c10ba3bf5b5cdcb4144cefdc60eca | |
parent | 4ca9d25ccceaa198c4e92b86d8ad8b8d01fb87ff [diff] [blame] |
quote spaces in commands for Windows See comments at: https://github.com/open-source-parsers/jsoncpp/commit/1a4dc3a888c7e6e179503250ccb391820a586b1b
diff --git a/test/runjsontests.py b/test/runjsontests.py index a1f6082..9422d57 100644 --- a/test/runjsontests.py +++ b/test/runjsontests.py
@@ -54,7 +54,7 @@ is_json_checker_test = (input_path in test_jsonchecker) or expect_failure print('TESTING:', input_path, end=' ') options = is_json_checker_test and '--json-checker' or '' - pipe = os.popen( "%s%s %s %s" % ( + pipe = os.popen( '%s%s %s "%s"' % ( valgrind_path, jsontest_executable_path, options, input_path) ) process_output = pipe.read()