From 92ff302a142885a7816958f4085e271bc5e9e09f Mon Sep 17 00:00:00 2001 From: Jussi Pakkanen Date: Sun, 20 Oct 2013 23:28:16 +0300 Subject: Fixed cross compilation back up. --- meson_test.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'meson_test.py') diff --git a/meson_test.py b/meson_test.py index 3bba960d6..e8b8a12bb 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) -- cgit v1.2.3