From: Matthias Braun Date: Wed, 11 Nov 2015 03:03:54 +0000 (+0000) Subject: lit: Show all output with --show-all, even in combination with --succinct X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=1aeb225d49dfc869dfad08f31323e64eb43f20f7;p=oota-llvm.git 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. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@252698 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/utils/lit/lit/main.py b/utils/lit/lit/main.py index 18c4a8c3aae..a413885ac9a 100755 --- a/utils/lit/lit/main.py +++ b/utils/lit/lit/main.py @@ -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