[llvm] r187933 - [lit] Always list individual UNRESOLVED tests.

Daniel Dunbar daniel at zuster.org
Wed Aug 7 16:10:06 PDT 2013


Author: ddunbar
Date: Wed Aug  7 18:10:05 2013
New Revision: 187933

URL: http://llvm.org/viewvc/llvm-project?rev=187933&view=rev
Log:
[lit] Always list individual UNRESOLVED tests.

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=187933&r1=187932&r2=187933&view=diff
==============================================================================
--- llvm/trunk/utils/lit/lit/main.py (original)
+++ llvm/trunk/utils/lit/lit/main.py Wed Aug  7 18:10:05 2013
@@ -400,9 +400,10 @@ def main(builtinParameters = {}):
         if t.result.isFailure:
             hasFailures = True
 
-    # FIXME: Show unresolved and (optionally) unsupported tests.
+    # Print each test in any of the failing groups.
     for title,code in (('Unexpected Passing Tests', lit.Test.XPASS),
-                       ('Failing Tests', lit.Test.FAIL)):
+                       ('Failing Tests', lit.Test.FAIL),
+                       ('Unresolved Tests', lit.Test.UNRESOLVED)):
         elts = byCode.get(code)
         if not elts:
             continue





More information about the llvm-commits mailing list