Skip to content

Commit b349221

Browse files
baylesjcdunn2001
authored andcommitted
Cleanup test configurations
1 parent 9e23f66 commit b349221

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

meson.build

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ test(
103103
'-B',
104104
join_paths(meson.current_source_dir(), 'test/runjsontests.py'),
105105
jsontestrunner,
106-
join_paths(meson.current_source_dir(), 'test/data')]
106+
join_paths(meson.current_source_dir(), 'test/data')],
107107
)
108108
test(
109109
'jsonchecker_jsontestrunner',
@@ -113,5 +113,6 @@ test(
113113
join_paths(meson.current_source_dir(), 'test/runjsontests.py'),
114114
'--with-json-checker',
115115
jsontestrunner,
116-
join_paths(meson.current_source_dir(), 'test/data')]
116+
join_paths(meson.current_source_dir(), 'test/data')],
117+
workdir : join_paths(meson.current_source_dir(), 'test/data'),
117118
)

test/runjsontests.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ def runAllTests(jsontest_executable_path, input_dir = None,
8484
10, # fails because we allow extra values after close
8585
13, # fails because we allow leading zeroes in numbers
8686
18, # fails because we allow deeply nested values
87-
25, # fails because we allow tab characters in strings.
87+
25, # fails because we allow tab characters in strings
8888
27, # fails because we allow string line breaks
8989
]]
9090
test_jsonchecker = [ test for test in all_tests

0 commit comments

Comments
 (0)