Commit 64af7c0d authored by Ezio Melotti's avatar Ezio Melotti

#12074: merge with 3.2.

parents 17ec7cd9 84f75c68
......@@ -632,7 +632,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:
......@@ -653,7 +654,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:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment