mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-02-02 09:46:52 -05:00
Fix typo in test_runner.py causing error
This commit is contained in:
parent
e782099a15
commit
ada1af6d8f
1 changed files with 1 additions and 1 deletions
|
@ -342,7 +342,7 @@ def run_tests(test_list, src_dir, build_dir, exeext, tmpdir, jobs=1, enable_cove
|
||||||
print('\n============')
|
print('\n============')
|
||||||
print('{}Combined log for {}:{}'.format(BOLD[1], testdir, BOLD[0]))
|
print('{}Combined log for {}:{}'.format(BOLD[1], testdir, BOLD[0]))
|
||||||
print('============\n')
|
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("\n".join(deque(combined_logs.splitlines(), combined_logs_len)))
|
||||||
|
|
||||||
print_results(test_results, max_len_name, (int(time.time() - time0)))
|
print_results(test_results, max_len_name, (int(time.time() - time0)))
|
||||||
|
|
Loading…
Add table
Reference in a new issue