mirror of
https://github.com/python/cpython.git
synced 2025-12-18 14:51:31 +00:00
Fix regrtest -j0 -R output
Write also dots into stderr, instead of stdout.
This commit is contained in:
parent
04054d9ac2
commit
17a63e2169
1 changed files with 1 additions and 1 deletions
|
|
@ -84,7 +84,7 @@ def dash_R(the_module, test, indirect_test, huntrleaks):
|
||||||
indirect_test()
|
indirect_test()
|
||||||
alloc_after, rc_after, fd_after = dash_R_cleanup(fs, ps, pic, zdc,
|
alloc_after, rc_after, fd_after = dash_R_cleanup(fs, ps, pic, zdc,
|
||||||
abcs)
|
abcs)
|
||||||
print('.', end='', flush=True)
|
print('.', end='', file=sys.stderr, flush=True)
|
||||||
if i >= nwarmup:
|
if i >= nwarmup:
|
||||||
rc_deltas[i] = rc_after - rc_before
|
rc_deltas[i] = rc_after - rc_before
|
||||||
alloc_deltas[i] = alloc_after - alloc_before
|
alloc_deltas[i] = alloc_after - alloc_before
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue