Write additional parser tests, update some of the existing tests to work with throw_on_error

This commit is contained in:
ado
2023-08-04 16:48:07 +02:00
parent 5173e7afbc
commit c981ed6644
5 changed files with 316 additions and 69 deletions

View File

@@ -14,13 +14,14 @@ tests = [
]
foreach name : tests
test_name = 'test_' + name
exe = executable(
name,
'test_' + name + '.cpp',
test_name,
test_name + '.cpp',
dependencies: [doctest_dep, ssp_dep]
)
test('test_' + name, exe, timeout: 60)
test(test_name, exe, timeout: 60)
endforeach