diff options
author | David Robillard <d@drobilla.net> | 2020-11-09 18:44:40 +0100 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2020-11-09 20:03:10 +0100 |
commit | 81832c41514babe7bb8ad9295057636b7a7f9628 (patch) | |
tree | d6044e7a7989fadf554741c05610e749c2ad355d /wscript | |
parent | 3dc112f6f501a827951a9c3f7e923ed98495cc15 (diff) | |
download | serd-81832c41514babe7bb8ad9295057636b7a7f9628.tar.gz serd-81832c41514babe7bb8ad9295057636b7a7f9628.tar.bz2 serd-81832c41514babe7bb8ad9295057636b7a7f9628.zip |
Split out reader and writer tests
Diffstat (limited to 'wscript')
-rw-r--r-- | wscript | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -213,8 +213,9 @@ def build(bld): for prog in [('serdi_static', 'src/serdi.c'), ('test_env', 'test/test_env.c'), ('test_free_null', 'test/test_free_null.c'), + ('test_node', 'test/test_node.c'), ('test_read_chunk', 'test/test_read_chunk.c'), - ('test_serd', 'test/test_serd.c'), + ('test_reader_writer', 'test/test_reader_writer.c'), ('test_string', 'test/test_string.c'), ('test_uri', 'test/test_uri.c')]: bld(features = 'c cprogram', @@ -541,8 +542,9 @@ def test(tst): with tst.group('Unit') as check: check(['./test_env']) check(['./test_free_null']) + check(['./test_node']) check(['./test_read_chunk']) - check(['./test_serd']) + check(['./test_reader_writer']) check(['./test_string']) check(['./test_uri']) |