diff options
| author | Ezio Melotti <ezio.melotti@gmail.com> | 2011-05-24 01:00:10 +0300 |
|---|---|---|
| committer | Ezio Melotti <ezio.melotti@gmail.com> | 2011-05-24 01:00:10 +0300 |
| commit | 5d617bf53b001ecd607e889e25b57423765a587c (patch) | |
| tree | 44744671810dbe8afa9a6597394eccc94da530c0 | |
| parent | 99c1a9a990ac24ba92761454875128eed423e2cc (diff) | |
| download | cpython-5d617bf53b001ecd607e889e25b57423765a587c.tar.gz | |
#12074: remove the /0 when there are no failures.
| -rwxr-xr-x | Lib/test/regrtest.py | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/Lib/test/regrtest.py b/Lib/test/regrtest.py index a8726b5246..08c991667c 100755 --- a/Lib/test/regrtest.py +++ b/Lib/test/regrtest.py @@ -582,7 +582,8 @@ def main(tests=None, testdir=None, verbose=0, quiet=False, continue accumulate_result(test, result) if not quiet: - print("[{1:{0}}{2}/{3}] {4}".format( + fmt = "[{1:{0}}{2}/{3}] {4}" if bad else "[{1:{0}}{2}] {4}" + print(fmt.format( test_count_width, test_index, test_count, len(bad), test)) if stdout: @@ -601,7 +602,8 @@ def main(tests=None, testdir=None, verbose=0, quiet=False, else: for test_index, test in enumerate(tests, 1): if not quiet: - print("[{1:{0}}{2}/{3}] {4}".format( + fmt = "[{1:{0}}{2}/{3}] {4}" if bad else "[{1:{0}}{2}] {4}" + print(fmt.format( test_count_width, test_index, test_count, len(bad), test)) sys.stdout.flush() if trace: |
