mirror of
https://github.com/open-source-parsers/jsoncpp.git
synced 2025-04-06 10:55:57 +02:00
Revert "Merge pull request #108 from open-source-parsers/quote-spaces"
This reverts commit dfc5f879c168d11fe2f4ef686ab33bbecdc5679f, reversing changes made to 0f6884f771eae221873b345af2c6369ccf7dcb5b.
This commit is contained in:
parent
6eaf150dc7
commit
4ca9d25ccc
@ -1,8 +1,8 @@
|
|||||||
from __future__ import print_function
|
from __future__ import print_function
|
||||||
from glob import glob
|
|
||||||
import sys
|
import sys
|
||||||
import os
|
import os
|
||||||
import pipes
|
import os.path
|
||||||
|
from glob import glob
|
||||||
import optparse
|
import optparse
|
||||||
|
|
||||||
VALGRIND_CMD = 'valgrind --tool=memcheck --leak-check=yes --undef-value-errors=yes '
|
VALGRIND_CMD = 'valgrind --tool=memcheck --leak-check=yes --undef-value-errors=yes '
|
||||||
@ -56,7 +56,7 @@ def runAllTests( jsontest_executable_path, input_dir = None,
|
|||||||
options = is_json_checker_test and '--json-checker' or ''
|
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,
|
valgrind_path, jsontest_executable_path, options,
|
||||||
pipes.quote(input_path)))
|
input_path) )
|
||||||
process_output = pipe.read()
|
process_output = pipe.read()
|
||||||
status = pipe.close()
|
status = pipe.close()
|
||||||
if is_json_checker_test:
|
if is_json_checker_test:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user