diff options
author | Ezio Melotti <ezio.melotti@gmail.com> | 2011-05-23 22:00:10 (GMT) |
---|---|---|
committer | Ezio Melotti <ezio.melotti@gmail.com> | 2011-05-23 22:00:10 (GMT) |
commit | 84f75c680c2a17954155e71455061599e8778ccb (patch) | |
tree | 131770773d00140ed827ea42b4cd62b172fd7e20 | |
parent | 200fe3d747fe8da9a5043632dad435b33c492439 (diff) | |
download | cpython-84f75c680c2a17954155e71455061599e8778ccb.zip cpython-84f75c680c2a17954155e71455061599e8778ccb.tar.gz cpython-84f75c680c2a17954155e71455061599e8778ccb.tar.bz2 |
#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 a8726b5..08c9916 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: |