summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--wscript3
1 files changed, 2 insertions, 1 deletions
diff --git a/wscript b/wscript
index 73ae1da6..7f943bcc 100644
--- a/wscript
+++ b/wscript
@@ -282,8 +282,9 @@ def test(ctx):
autowaf.begin_tests(ctx, APPNAME)
for i in ctx.path.ant_glob('tests/*.ttl'):
+ empty = ctx.path.find_node('tests/empty.ingen')
autowaf.run_test(ctx, APPNAME,
- 'ingen_test --load ../tests/empty.ingen --execute %s' % i.abspath(),
+ 'ingen_test --load %s --execute %s' % (empty.abspath(), i.abspath()),
dirs=['.', 'src', 'tests'])
autowaf.end_tests(ctx, APPNAME)