forked from OSchip/llvm-project
lit: Show all output with --show-all, even in combination with --succinct
I missed an earlier exit for the --succinct case when I introduced the -a option. llvm-svn: 252698
This commit is contained in:
parent
19744ee6ad
commit
5bcb152f26
|
@ -43,6 +43,7 @@ class TestingProgressDisplay(object):
|
|||
test.getFullName())
|
||||
|
||||
shouldShow = test.result.code.isFailure or \
|
||||
self.opts.showAllOutput or \
|
||||
(not self.opts.quiet and not self.opts.succinct)
|
||||
if not shouldShow:
|
||||
return
|
||||
|
|
Loading…
Reference in New Issue