aboutsummaryrefslogtreecommitdiffstats
path: root/wscript
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2018-05-10 14:54:51 +0200
committerDavid Robillard <d@drobilla.net>2019-04-13 19:15:32 +0200
commitd7bde35652211e3f3cd4d155e7778e6691a42358 (patch)
tree20b0ccb2347b3d285a01694345c3c7a5a42831d0 /wscript
parent0e1e1ee57ddcb92b4963dc1e18639a3b9b664321 (diff)
downloadserd-d7bde35652211e3f3cd4d155e7778e6691a42358.tar.gz
serd-d7bde35652211e3f3cd4d155e7778e6691a42358.tar.bz2
serd-d7bde35652211e3f3cd4d155e7778e6691a42358.zip
Add test for reading chunks
Diffstat (limited to 'wscript')
-rw-r--r--wscript4
1 files changed, 3 insertions, 1 deletions
diff --git a/wscript b/wscript
index 38e5e00d..a6101773 100644
--- a/wscript
+++ b/wscript
@@ -145,7 +145,8 @@ def build(bld):
# Test programs
for prog in [('serdi_static', 'src/serdi.c'),
('cursor_test', 'tests/cursor_test.c'),
- ('serd_test', 'tests/serd_test.c')]:
+ ('serd_test', 'tests/serd_test.c'),
+ ('read_chunk_test', 'tests/read_chunk_test.c')]:
bld(features = 'c cprogram',
source = prog[1],
use = 'libserd_profiled',
@@ -417,6 +418,7 @@ def test(tst):
with tst.group('Unit') as check:
check(['./cursor_test'])
check(['./serd_test'])
+ check(['./read_chunk_test'])
def test_syntax_io(check, in_name, check_name, lang):
in_path = 'tests/good/%s' % in_name