mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-12-02 08:26:29 +00:00
[lit] Always list individual UNRESOLVED tests.
llvm-svn: 187933
This commit is contained in:
parent
a81b869a40
commit
91b5aa5eb1
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user