| Index: run_test_cases.py
|
| diff --git a/run_test_cases.py b/run_test_cases.py
|
| index 676e102db423b01eef13a81d01d21d09a468b1d4..942ac0b687c2c0c67e966b3cb9523c297b6db1d9 100755
|
| --- a/run_test_cases.py
|
| +++ b/run_test_cases.py
|
| @@ -602,10 +602,10 @@ class Runner(object):
|
| line = '%s (%.2fs) - retry #%d' % (test_case, duration, try_count)
|
| else:
|
| line = '%s (%.2fs)' % (test_case, duration)
|
| - if self.verbose or (not need_to_retry and returncode):
|
| + if self.verbose or returncode:
|
| # Print output in one of two cases:
|
| - # --verbose was specified
|
| - # If can't retry but failed.
|
| + # --verbose was specified.
|
| + # The test failed.
|
| line += '\n' + output
|
| self.progress.update_item(line, True, need_to_retry)
|
|
|
|
|