aboutsummaryrefslogtreecommitdiffstats
path: root/wscript
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2018-11-17 21:01:59 +0100
committerDavid Robillard <d@drobilla.net>2019-12-19 20:55:43 -0500
commit05081ec8c56ab89540aa3ad4b1d96fc144a53c6c (patch)
treebd73915e7f684e258e3061c0db34df5fd0d32105 /wscript
parente438fb6c51a9903db5febdf99bd7fb1fdcd34ed4 (diff)
downloadserd-05081ec8c56ab89540aa3ad4b1d96fc144a53c6c.tar.gz
serd-05081ec8c56ab89540aa3ad4b1d96fc144a53c6c.tar.bz2
serd-05081ec8c56ab89540aa3ad4b1d96fc144a53c6c.zip
Add stack overflow tests
Diffstat (limited to 'wscript')
-rw-r--r--wscript4
1 files changed, 3 insertions, 1 deletions
diff --git a/wscript b/wscript
index 2074a56d..881b6d49 100644
--- a/wscript
+++ b/wscript
@@ -159,7 +159,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',
@@ -436,6 +437,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'])