mirror of
https://github.com/monero-project/monero.git
synced 2024-11-17 16:27:39 +00:00
functional_tests: flush stdout before popening new process
This commit is contained in:
parent
475481949a
commit
36ced06727
1 changed files with 1 additions and 0 deletions
|
@ -98,6 +98,7 @@ FAIL = []
|
||||||
for test in tests:
|
for test in tests:
|
||||||
try:
|
try:
|
||||||
print('[TEST STARTED] ' + test)
|
print('[TEST STARTED] ' + test)
|
||||||
|
sys.stdout.flush()
|
||||||
cmd = [python, srcdir + '/' + test + ".py"]
|
cmd = [python, srcdir + '/' + test + ".py"]
|
||||||
subprocess.check_call(cmd)
|
subprocess.check_call(cmd)
|
||||||
PASS.append(test)
|
PASS.append(test)
|
||||||
|
|
Loading…
Reference in a new issue