aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authormoneromooo-monero <moneromooo-monero@users.noreply.github.com>2019-04-23 18:21:06 +0000
committermoneromooo-monero <moneromooo-monero@users.noreply.github.com>2019-04-23 18:22:09 +0000
commit36ced0672740e92daa56a3e58e9a0745de0ca5e8 (patch)
tree1f9b3b58e0cdd4735a3cc0daf860fcd50aad3482 /tests
parentMerge pull request #5466 (diff)
downloadmonero-36ced0672740e92daa56a3e58e9a0745de0ca5e8.tar.xz
functional_tests: flush stdout before popening new process
Diffstat (limited to 'tests')
-rwxr-xr-xtests/functional_tests/functional_tests_rpc.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/functional_tests/functional_tests_rpc.py b/tests/functional_tests/functional_tests_rpc.py
index 83b75a088..e754b4e33 100755
--- a/tests/functional_tests/functional_tests_rpc.py
+++ b/tests/functional_tests/functional_tests_rpc.py
@@ -98,6 +98,7 @@ FAIL = []
for test in tests:
try:
print('[TEST STARTED] ' + test)
+ sys.stdout.flush()
cmd = [python, srcdir + '/' + test + ".py"]
subprocess.check_call(cmd)
PASS.append(test)