diff options
author | David Robillard <d@drobilla.net> | 2019-04-15 22:06:22 +0200 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2019-04-15 23:04:56 +0200 |
commit | 23d049e524e2b9fa733d7e41f72cd63c1f2eb439 (patch) | |
tree | d34ad03a59f0a72d457f9087798f6c45a616765a /wscript | |
parent | a08de742c0b8f463eba882e5b7bc718bef8bb529 (diff) | |
download | lilv-23d049e524e2b9fa733d7e41f72cd63c1f2eb439.tar.gz lilv-23d049e524e2b9fa733d7e41f72cd63c1f2eb439.tar.bz2 lilv-23d049e524e2b9fa733d7e41f72cd63c1f2eb439.zip |
Fix plugin tests on Windows
Diffstat (limited to 'wscript')
-rw-r--r-- | wscript | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -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: |