Commit 4cd17ba5 authored by Ralf Schmitt's avatar Ralf Schmitt

flush stdout after finishing a test in testrunner.py

testrunner.py otherwise buffers output inside my eshell sessions.
parent 00f0e668
......@@ -325,6 +325,7 @@ def spawn_subprocess(args, options, base_params):
success = True
else:
print ('%s timed out' % ' '.join(args))
sys.stdout.flush()
if options.db:
params['output'] = output
params['retcode'] = retcode
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment