diff options
author | Neal Norwitz <nnorwitz@gmail.com> | 2007-08-12 00:00:44 (GMT) |
---|---|---|
committer | Neal Norwitz <nnorwitz@gmail.com> | 2007-08-12 00:00:44 (GMT) |
commit | bb217d9ed81fea4593d6341a5b17903d72ac3efe (patch) | |
tree | a16f9ecd625dd46362e5b6f40d9e0b42b09d42fe /Lib/test/regrtest.py | |
parent | 2614e1dc6374e4869079147c7bbce42d264bd381 (diff) | |
download | cpython-bb217d9ed81fea4593d6341a5b17903d72ac3efe.zip cpython-bb217d9ed81fea4593d6341a5b17903d72ac3efe.tar.gz cpython-bb217d9ed81fea4593d6341a5b17903d72ac3efe.tar.bz2 |
Make sure to flush output when writing dots during -R runs
Diffstat (limited to 'Lib/test/regrtest.py')
-rwxr-xr-x | Lib/test/regrtest.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/test/regrtest.py b/Lib/test/regrtest.py index 31e4eaf..6f6436f 100755 --- a/Lib/test/regrtest.py +++ b/Lib/test/regrtest.py @@ -682,6 +682,7 @@ def dash_R(the_module, test, indirect_test, huntrleaks): rc = sys.gettotalrefcount() run_the_test() sys.stderr.write('.') + sys.stderr.flush() dash_R_cleanup(fs, ps, pic) if i >= nwarmup: deltas.append(sys.gettotalrefcount() - rc - 2) |