diff options
| author | Neal Norwitz <nnorwitz@gmail.com> | 2007-08-12 00:00:44 +0000 |
|---|---|---|
| committer | Neal Norwitz <nnorwitz@gmail.com> | 2007-08-12 00:00:44 +0000 |
| commit | bb217d9ed81fea4593d6341a5b17903d72ac3efe (patch) | |
| tree | a16f9ecd625dd46362e5b6f40d9e0b42b09d42fe | |
| parent | 2614e1dc6374e4869079147c7bbce42d264bd381 (diff) | |
| download | cpython-git-bb217d9ed81fea4593d6341a5b17903d72ac3efe.tar.gz | |
Make sure to flush output when writing dots during -R runs
| -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 31e4eaf818..6f6436f89b 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) |
