Fix typo argument order to TestRunner (#615)

pull/613/merge
Nirbheek Chauhan 9 years ago committed by Jussi Pakkanen
parent b6e8809f25
commit d61656d43c
  1. 2
      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

Loading…
Cancel
Save