mirror of
https://github.com/python/cpython.git
synced 2025-07-23 11:15:24 +00:00
#12074: merge with 3.2.
This commit is contained in:
commit
64af7c0d36
1 changed files with 4 additions and 2 deletions
|
@ -632,7 +632,8 @@ def main(tests=None, testdir=None, verbose=0, quiet=False,
|
||||||
continue
|
continue
|
||||||
accumulate_result(test, result)
|
accumulate_result(test, result)
|
||||||
if not quiet:
|
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,
|
test_count_width, test_index, test_count,
|
||||||
len(bad), test))
|
len(bad), test))
|
||||||
if stdout:
|
if stdout:
|
||||||
|
@ -653,7 +654,8 @@ def main(tests=None, testdir=None, verbose=0, quiet=False,
|
||||||
else:
|
else:
|
||||||
for test_index, test in enumerate(tests, 1):
|
for test_index, test in enumerate(tests, 1):
|
||||||
if not quiet:
|
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))
|
test_count_width, test_index, test_count, len(bad), test))
|
||||||
sys.stdout.flush()
|
sys.stdout.flush()
|
||||||
if trace:
|
if trace:
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue