diff options
author | Nirbheek Chauhan <nirbheek.chauhan@gmail.com> | 2016-06-24 16:14:07 +0530 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2016-06-24 13:44:07 +0300 |
commit | d61656d43c509832c972a5dfdd9b0efbb0d4f0df (patch) | |
tree | a652d2db8f75131a928b1883805380bfe91a02c8 /run_tests.py | |
parent | b6e8809f25d5b86ccd8cf6c4532778a74e214c18 (diff) | |
download | meson-d61656d43c509832c972a5dfdd9b0efbb0d4f0df.zip meson-d61656d43c509832c972a5dfdd9b0efbb0d4f0df.tar.gz meson-d61656d43c509832c972a5dfdd9b0efbb0d4f0df.tar.bz2 |
Fix typo argument order to TestRunner (#615)
Diffstat (limited to 'run_tests.py')
-rwxr-xr-x | run_tests.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/run_tests.py b/run_tests.py index 69e4d4e..6f51a19 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 |