diff options
| author | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2019-04-23 18:21:06 +0000 |
|---|---|---|
| committer | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2019-04-23 18:22:09 +0000 |
| commit | 36ced0672740e92daa56a3e58e9a0745de0ca5e8 (patch) | |
| tree | 1f9b3b58e0cdd4735a3cc0daf860fcd50aad3482 | |
| parent | 475481949a7e5dabd740e017d512b07eb2448f4c (diff) | |
| download | monzero-core-36ced0672740e92daa56a3e58e9a0745de0ca5e8.tar.gz monzero-core-36ced0672740e92daa56a3e58e9a0745de0ca5e8.tar.xz monzero-core-36ced0672740e92daa56a3e58e9a0745de0ca5e8.zip | |
functional_tests: flush stdout before popening new process
| -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) |
