summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--wscript3
1 files changed, 2 insertions, 1 deletions
diff --git a/wscript b/wscript
index dbda6cd..93cead9 100644
--- a/wscript
+++ b/wscript
@@ -464,7 +464,8 @@ def test(tst):
with tst.group('plugin') as check:
for p in test_plugins:
- if os.path.exists('./test/test_' + p):
+ prog_name = tst.env.cprogram_PATTERN % ('test_' + p)
+ if os.path.exists(os.path.join('test', prog_name)):
check(['./test/test_' + p, 'test/%s.lv2/' % p])
try: