aboutsummaryrefslogtreecommitdiffstats
path: root/wscript
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2020-11-09 17:22:12 +0100
committerDavid Robillard <d@drobilla.net>2020-11-09 20:03:10 +0100
commiteae480cfc976a52570bd5b0adc202fa0f8a52ee3 (patch)
tree21df90d1332ea4539c550ff8be3f1b9a37a2b849 /wscript
parentf6d870d67fd8f38539ded74ede295e9b19fb88bc (diff)
downloadserd-eae480cfc976a52570bd5b0adc202fa0f8a52ee3.tar.gz
serd-eae480cfc976a52570bd5b0adc202fa0f8a52ee3.tar.bz2
serd-eae480cfc976a52570bd5b0adc202fa0f8a52ee3.zip
Split out URI tests
Diffstat (limited to 'wscript')
-rw-r--r--wscript4
1 files changed, 3 insertions, 1 deletions
diff --git a/wscript b/wscript
index 3e8fc373..953d1652 100644
--- a/wscript
+++ b/wscript
@@ -214,7 +214,8 @@ def build(bld):
('test_env', 'test/test_env.c'),
('test_free_null', 'test/test_free_null.c'),
('test_read_chunk', 'test/test_read_chunk.c'),
- ('test_serd', 'test/test_serd.c')]:
+ ('test_serd', 'test/test_serd.c'),
+ ('test_uri', 'test/test_uri.c')]:
bld(features = 'c cprogram',
source = prog[1],
use = 'libserd_profiled',
@@ -541,6 +542,7 @@ def test(tst):
check(['./test_free_null'])
check(['./test_read_chunk'])
check(['./test_serd'])
+ check(['./test_uri'])
def test_syntax_io(check, in_name, check_name, lang):
in_path = 'test/good/%s' % in_name