From 26c52861b9e5d73eb20c9db2e0952c0e7cdd57b7 Mon Sep 17 00:00:00 2001 From: Christopher Dunn Date: Fri, 23 Jan 2015 11:53:16 -0600 Subject: [PATCH] pass --json-writer StyledWriter --- test/runjsontests.py | 1 + 1 file changed, 1 insertion(+) diff --git a/test/runjsontests.py b/test/runjsontests.py index 7243063..ffe033f 100644 --- a/test/runjsontests.py +++ b/test/runjsontests.py @@ -72,6 +72,7 @@ def runAllTests( jsontest_executable_path, input_dir = None, 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 '' + options += ' --json-writer StyledWriter' cmd = '%s%s %s "%s"' % ( valgrind_path, jsontest_executable_path, options, input_path)