diff options
author | David Robillard <d@drobilla.net> | 2020-08-16 11:15:19 +0200 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2020-08-16 13:56:40 +0200 |
commit | 89b4a240d08c17565c853010018e5894012cb74e (patch) | |
tree | f96bfb6d3024b677b841a402d6ad05a30cb47f3c /wscript | |
parent | 86aac1247d6980105160287f02b815d9077b507d (diff) | |
download | serd-89b4a240d08c17565c853010018e5894012cb74e.tar.gz serd-89b4a240d08c17565c853010018e5894012cb74e.tar.bz2 serd-89b4a240d08c17565c853010018e5894012cb74e.zip |
Add test for reading chunks
Diffstat (limited to 'wscript')
-rw-r--r-- | wscript | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -211,6 +211,7 @@ def build(bld): # Test programs for prog in [('serdi_static', 'src/serdi.c'), + ('read_chunk_test', 'tests/read_chunk_test.c'), ('serd_test', 'tests/serd_test.c')]: bld(features = 'c cprogram', source = prog[1], @@ -532,6 +533,7 @@ def test(tst): srcdir = tst.path.abspath() with tst.group('Unit') as check: + check(['./read_chunk_test']) check(['./serd_test']) def test_syntax_io(check, in_name, check_name, lang): |