diff options
author | David Robillard <d@drobilla.net> | 2019-03-17 23:49:10 +0100 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2019-04-13 19:15:32 +0200 |
commit | dd7f57a7d955a323c5691ec64dd96e9b0a5a2553 (patch) | |
tree | 58f62490c75c52891d900139aa630bbd04d1e979 /wscript | |
parent | 14c2fe14b90c1057b2829b7008423ef9bf79edef (diff) | |
download | serd-dd7f57a7d955a323c5691ec64dd96e9b0a5a2553.tar.gz serd-dd7f57a7d955a323c5691ec64dd96e9b0a5a2553.tar.bz2 serd-dd7f57a7d955a323c5691ec64dd96e9b0a5a2553.zip |
Clean up and expose base64 implementation
Diffstat (limited to 'wscript')
-rw-r--r-- | wscript | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -148,6 +148,7 @@ def build(bld): # Test programs for prog in [('serdi_static', 'src/serdi.c'), + ('base64_test', 'tests/base64_test.c'), ('cursor_test', 'tests/cursor_test.c'), ('serd_test', 'tests/serd_test.c'), ('read_chunk_test', 'tests/read_chunk_test.c'), @@ -422,6 +423,7 @@ def test(tst): srcdir = tst.path.abspath() with tst.group('Unit') as check: + check(['./base64_test']) check(['./cursor_test']) check(['./nodes_test']) check(['./overflow_test']) |