diff options
author | David Robillard <d@drobilla.net> | 2016-07-09 16:24:20 -0400 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2016-07-09 16:24:20 -0400 |
commit | db62921a375c06c67844db559d443893fe2022b7 (patch) | |
tree | 7a004e2be24d0b40c7f295faa0aadd3c93348ff1 | |
parent | 6ba1e0000c74172589f1b35ca1b9a40a5692c1d6 (diff) | |
download | ingen-db62921a375c06c67844db559d443893fe2022b7.tar.gz ingen-db62921a375c06c67844db559d443893fe2022b7.tar.bz2 ingen-db62921a375c06c67844db559d443893fe2022b7.zip |
Clean up test output
-rw-r--r-- | wscript | 10 |
1 files changed, 7 insertions, 3 deletions
@@ -279,9 +279,13 @@ def test(ctx): os.path.join('src', 'server')]) autowaf.pre_test(ctx, APPNAME, dirs=['.', 'src', 'tests']) + autowaf.begin_tests(ctx, APPNAME) + for i in ctx.path.ant_glob('tests/*.ttl'): - autowaf.run_tests(ctx, APPNAME, - ['ingen_test --load ../tests/empty.ingen --execute %s' % i.abspath()], - dirs=['.', 'src', 'tests']) + autowaf.run_test(ctx, APPNAME, + 'ingen_test --load ../tests/empty.ingen --execute %s' % i.abspath(), + dirs=['.', 'src', 'tests']) + + autowaf.end_tests(ctx, APPNAME) autowaf.post_test(ctx, APPNAME, dirs=['.', 'src', 'tests'], remove=['/usr*']) |