aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorRiccardo Spagni <ric@spagni.net>2019-05-02 11:29:12 +0200
committerRiccardo Spagni <ric@spagni.net>2019-05-02 11:29:12 +0200
commit17f31c3d512104e24b0f611cdcdd34e438d9f795 (patch)
tree32cda25f0af032d9c670b608b1a2f4b0c890d9e3 /tests
parentMerge pull request #5476 (diff)
parentfunctional_tests: flush stdout before popening new process (diff)
downloadmonero-17f31c3d512104e24b0f611cdcdd34e438d9f795.tar.xz
Merge pull request #5484
36ced067 functional_tests: flush stdout before popening new process (moneromooo-monero)
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)