aboutsummaryrefslogtreecommitdiff
path: root/run_unittests.py
diff options
context:
space:
mode:
authorJussi Pakkanen <jpakkane@gmail.com>2018-07-19 14:22:32 +0300
committerJussi Pakkanen <jpakkane@gmail.com>2018-07-19 14:22:32 +0300
commitf90d3c19fd00fe62c1b815357f76a5891f338ea4 (patch)
tree401ecc65ce49d36075b8e9148ea0e753ed64ab22 /run_unittests.py
parentc1fc55e6f6acf8289e673301be2c474e946ce305 (diff)
downloadmeson-useargsintests.zip
meson-useargsintests.tar.gz
meson-useargsintests.tar.bz2
Use option args in find_library.useargsintests
Diffstat (limited to 'run_unittests.py')
-rwxr-xr-xrun_unittests.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/run_unittests.py b/run_unittests.py
index dd109aa..f07bccd 100755
--- a/run_unittests.py
+++ b/run_unittests.py
@@ -542,7 +542,7 @@ class InternalTests(unittest.TestCase):
f.write('')
with open(os.path.join(tmpdir, 'libfoo.so.70.0.so.1'), 'w') as f:
f.write('')
- found = cc.find_library_real('foo', env, [tmpdir], '', 'default')
+ found = cc.find_library_real('foo', env, [tmpdir], '', [], 'default')
self.assertEqual(os.path.basename(found[0]), 'libfoo.so.54.0')
def test_find_library_patterns(self):