Skip to content

Commit b40e5c3

Browse files
committed
Cleanup test configurations
1 parent b166b15 commit b40e5c3

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

meson.build

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -106,12 +106,13 @@ test(
106106
join_paths(meson.current_source_dir(), 'test/data')]
107107
)
108108
test(
109-
'unittest_jsontestrunner',
109+
'jsonchecker_jsontestrunner',
110110
python,
111111
args : [
112112
'-B',
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')]
117-
)
116+
join_paths(meson.current_source_dir(), 'test/data')],
117+
workdir : join_paths(meson.current_source_dir(), 'test/data'),
118+
)

test/runjsontests.py

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

0 commit comments

Comments
 (0)