[lit] Always list individual UNRESOLVED tests.

llvm-svn: 187933
This commit is contained in:
Daniel Dunbar 2013-08-07 23:10:05 +00:00
parent 9ee3bb89c9
commit 403eeea0cf
1 changed files with 3 additions and 2 deletions

View File

@ -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