diff options
-rw-r--r-- | lv2/lv2plug.in/ns/ext/atom/atom-test.c | 1 | ||||
-rw-r--r-- | wscript | 4 |
2 files changed, 2 insertions, 3 deletions
diff --git a/lv2/lv2plug.in/ns/ext/atom/atom-test.c b/lv2/lv2plug.in/ns/ext/atom/atom-test.c index 3f75dc2..dec2b9b 100644 --- a/lv2/lv2plug.in/ns/ext/atom/atom-test.c +++ b/lv2/lv2plug.in/ns/ext/atom/atom-test.c @@ -392,6 +392,5 @@ main(void) 0); } - printf("All tests passed.\n"); return 0; } @@ -534,8 +534,8 @@ def test(ctx): for i in ctx.path.ant_glob('**/*-test'): name = os.path.basename(i.abspath()) os.environ['PATH'] = '.' + os.pathsep + os.getenv('PATH') - autowaf.run_tests( - ctx, name, [i.path_from(ctx.path.find_node('build'))], dirs=['.']) + autowaf.run_test( + ctx, name, i.path_from(ctx.path.find_node('build')), dirs=['.'], name=i) autowaf.post_test(ctx, APPNAME, dirs=['.']) class Dist(Scripting.Dist): |