aboutsummaryrefslogtreecommitdiffstats
path: root/wscript
diff options
context:
space:
mode:
Diffstat (limited to 'wscript')
-rw-r--r--wscript4
1 files changed, 3 insertions, 1 deletions
diff --git a/wscript b/wscript
index 67a02e51..95cb0c86 100644
--- a/wscript
+++ b/wscript
@@ -151,7 +151,8 @@ def build(bld):
('cursor_test', 'tests/cursor_test.c'),
('serd_test', 'tests/serd_test.c'),
('read_chunk_test', 'tests/read_chunk_test.c'),
- ('nodes_test', 'tests/nodes_test.c')]:
+ ('nodes_test', 'tests/nodes_test.c'),
+ ('overflow_test', 'tests/overflow_test.c')]:
bld(features = 'c cprogram',
source = prog[1],
use = 'libserd_profiled',
@@ -423,6 +424,7 @@ def test(tst):
with tst.group('Unit') as check:
check(['./cursor_test'])
check(['./nodes_test'])
+ check(['./overflow_test'])
check(['./serd_test'])
check(['./read_chunk_test'])