diff options
author | MeshCollider <dobsonsa68@gmail.com> | 2018-02-15 14:54:41 +1300 |
---|---|---|
committer | MeshCollider <dobsonsa68@gmail.com> | 2018-02-15 14:54:41 +1300 |
commit | ada1af6d8f79357ddd18ff80324bbacca63ab95a (patch) | |
tree | 94e8c619a679c8e45177df9c8321fde5ef00a793 /test | |
parent | e782099a151a680523cd8ff5e3fcb9d5cc182bdd (diff) |
Fix typo in test_runner.py causing error
Diffstat (limited to 'test')
-rwxr-xr-x | test/functional/test_runner.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/functional/test_runner.py b/test/functional/test_runner.py index 0cf3424c71..945f645eac 100755 --- a/test/functional/test_runner.py +++ b/test/functional/test_runner.py @@ -342,7 +342,7 @@ def run_tests(test_list, src_dir, build_dir, exeext, tmpdir, jobs=1, enable_cove print('\n============') print('{}Combined log for {}:{}'.format(BOLD[1], testdir, BOLD[0])) print('============\n') - combined_logs, _ = subprocess.Popen([sys.executble, os.path.join(tests_dir, 'combine_logs.py'), '-c', testdir], universal_newlines=True, stdout=subprocess.PIPE).communicate() + combined_logs, _ = subprocess.Popen([sys.executable, os.path.join(tests_dir, 'combine_logs.py'), '-c', testdir], universal_newlines=True, stdout=subprocess.PIPE).communicate() print("\n".join(deque(combined_logs.splitlines(), combined_logs_len))) print_results(test_results, max_len_name, (int(time.time() - time0))) |