From e35514910e663618be0da6edd0cae5926e3753ac Mon Sep 17 00:00:00 2001 From: David Robillard Date: Wed, 25 Dec 2013 21:28:42 +0000 Subject: Fix running test suite from top level. git-svn-id: http://svn.drobilla.net/lad/trunk/lilv@5206 a436a847-0d15-0410-975c-d299462d15a1 --- wscript | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/wscript b/wscript index 5bc3829..a36764a 100644 --- a/wscript +++ b/wscript @@ -298,8 +298,9 @@ def build(bld): autowaf.use_lib(bld, obj, 'SERD SORD SRATOM LV2') # Unit test program - bpath = os.path.abspath(os.path.join(out, 'test', 'test_plugin.lv2')) - bpath = bpath.replace('\\', '/') + blddir = autowaf.build_dir(APPNAME, 'test') + bpath = os.path.abspath(os.path.join(blddir, 'test_plugin.lv2')) + bpath = bpath.replace('\\', '/') obj = bld(features = 'c cprogram', source = 'test/lilv_test.c', includes = ['.', './src'], -- cgit v1.2.1