aboutsummaryrefslogtreecommitdiff
path: root/meson_test.py
diff options
context:
space:
mode:
authorJussi Pakkanen <jpakkane@gmail.com>2013-10-20 23:28:16 +0300
committerJussi Pakkanen <jpakkane@gmail.com>2013-10-20 23:28:16 +0300
commit92ff302a142885a7816958f4085e271bc5e9e09f (patch)
tree327c57212ee03b76d0ffaf98bef1f949d34fde19 /meson_test.py
parent11cfb3ce22dfbe189969575832d51a925abc8fee (diff)
downloadmeson-92ff302a142885a7816958f4085e271bc5e9e09f.zip
meson-92ff302a142885a7816958f4085e271bc5e9e09f.tar.gz
meson-92ff302a142885a7816958f4085e271bc5e9e09f.tar.bz2
Fixed cross compilation back up.
Diffstat (limited to 'meson_test.py')
-rwxr-xr-xmeson_test.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/meson_test.py b/meson_test.py
index 3bba960..e8b8a12 100755
--- a/meson_test.py
+++ b/meson_test.py
@@ -47,7 +47,7 @@ def run_single_test(wrap, test):
# because there is no execute wrapper.
cmd = None
else:
- cmd = [exe_runner, test.fname]
+ cmd = [test.exe_runner, test.fname]
else:
cmd = [test.fname]
if cmd is None:
@@ -114,7 +114,7 @@ def run_tests(options, datafilename):
if not test.is_parallel:
drain_futures(futures)
futures = []
- res = run_single_test(wrap, t)
+ res = run_single_test(wrap, test)
print_stats(numlen, tests, test.name, res, i, logfile)
else:
f = executor.submit(run_single_test, wrap, test)