Fix regrtest -j0 -R output

Write also dots into stderr, instead of stdout.
This commit is contained in:
Victor Stinner 2017-02-08 13:06:08 +01:00
parent 04054d9ac2
commit 17a63e2169
1 changed files with 1 additions and 1 deletions

View File

@ -84,7 +84,7 @@ def dash_R(the_module, test, indirect_test, huntrleaks):
indirect_test()
alloc_after, rc_after, fd_after = dash_R_cleanup(fs, ps, pic, zdc,
abcs)
print('.', end='', flush=True)
print('.', end='', file=sys.stderr, flush=True)
if i >= nwarmup:
rc_deltas[i] = rc_after - rc_before
alloc_deltas[i] = alloc_after - alloc_before