diff options
author | Riccardo Spagni <ric@spagni.net> | 2019-05-02 11:29:12 +0200 |
---|---|---|
committer | Riccardo Spagni <ric@spagni.net> | 2019-05-02 11:29:12 +0200 |
commit | 17f31c3d512104e24b0f611cdcdd34e438d9f795 (patch) | |
tree | 32cda25f0af032d9c670b608b1a2f4b0c890d9e3 /tests | |
parent | Merge pull request #5476 (diff) | |
parent | functional_tests: flush stdout before popening new process (diff) | |
download | monero-17f31c3d512104e24b0f611cdcdd34e438d9f795.tar.xz |
Merge pull request #5484
36ced067 functional_tests: flush stdout before popening new process (moneromooo-monero)
Diffstat (limited to 'tests')
-rwxr-xr-x | tests/functional_tests/functional_tests_rpc.py | 1 |
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) |