[llvm] r252698 - lit: Show all output with --show-all, even in combination with --succinct

Matthias Braun via llvm-commits llvm-commits at lists.llvm.org
Tue Nov 10 19:03:55 PST 2015


Author: matze
Date: Tue Nov 10 21:03:54 2015
New Revision: 252698

URL: http://llvm.org/viewvc/llvm-project?rev=252698&view=rev
Log:
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.

Modified:
    llvm/trunk/utils/lit/lit/main.py

Modified: llvm/trunk/utils/lit/lit/main.py
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/utils/lit/lit/main.py?rev=252698&r1=252697&r2=252698&view=diff
==============================================================================
--- llvm/trunk/utils/lit/lit/main.py (original)
+++ llvm/trunk/utils/lit/lit/main.py Tue Nov 10 21:03:54 2015
@@ -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




More information about the llvm-commits mailing list