Merge pull request #5484
36ced067
functional_tests: flush stdout before popening new process (moneromooo-monero)
This commit is contained in:
commit
17f31c3d51
|
@ -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 New Issue