From d61656d43c509832c972a5dfdd9b0efbb0d4f0df Mon Sep 17 00:00:00 2001 From: Nirbheek Chauhan Date: Fri, 24 Jun 2016 16:14:07 +0530 Subject: [PATCH] Fix typo argument order to TestRunner (#615) --- run_tests.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/run_tests.py b/run_tests.py index 69e4d4ec3..6f51a196b 100755 --- a/run_tests.py +++ b/run_tests.py @@ -263,7 +263,7 @@ def _run_test(testdir, test_build_dir, install_dir, extra_args, flags, compile_c stdo += o.decode(sys.stdout.encoding) stde += e.decode(sys.stdout.encoding) if pc.returncode != 0: - return TestResult('Compiling source code failed.', stdo, stde, gen_time, mesonlog, build_time) + return TestResult('Compiling source code failed.', stdo, stde, mesonlog, gen_time, build_time) test_start = time.time() # Note that we don't test that running e.g. 'ninja test' actually # works. One hopes that this is a common enough happening that