From 23d049e524e2b9fa733d7e41f72cd63c1f2eb439 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Mon, 15 Apr 2019 22:06:22 +0200 Subject: Fix plugin tests on Windows --- wscript | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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: -- cgit v1.2.1