summaryrefslogtreecommitdiff
path: root/run_cross_test.py
diff options
context:
space:
mode:
authorJussi Pakkanen <jpakkane@gmail.com>2015-02-16 01:24:58 +0200
committerJussi Pakkanen <jpakkane@gmail.com>2015-02-16 01:24:58 +0200
commit1ab5b850ef2b9e59d1b88331a19688e0fcfa3bef (patch)
treec2e9eb2b46571c189bc1726880e5f33a7c8b9932 /run_cross_test.py
parent22c23ee1fbfe2b357601992acdae3f3a71ea8632 (diff)
downloadmeson-1ab5b850ef2b9e59d1b88331a19688e0fcfa3bef.tar.gz
Use lib as library path in unit tests.
Diffstat (limited to 'run_cross_test.py')
-rwxr-xr-xrun_cross_test.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/run_cross_test.py b/run_cross_test.py
index e75de62c2..60263369c 100755
--- a/run_cross_test.py
+++ b/run_cross_test.py
@@ -45,7 +45,7 @@ def run_test(testdir, should_succeed=True):
os.mkdir(test_build_dir)
os.mkdir(install_dir)
print('Running test: ' + testdir)
- gen_command = [sys.executable, meson_command, '--prefix', install_dir, testdir, test_build_dir] + extra_flags
+ gen_command = [sys.executable, meson_command, '--prefix', install_dir, '--libdir', 'lib', testdir, test_build_dir] + extra_flags
p = subprocess.Popen(gen_command)
p.wait()
if not should_succeed: