diff options
author | Daniel Dunbar <daniel@zuster.org> | 2013-08-07 23:10:05 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2013-08-07 23:10:05 +0000 |
commit | 91a62c34d8e40f3f5b51b07b2edb156f7bcbbffc (patch) | |
tree | 452ab1b9695fd77c8b261fb3ab10dca057e11799 | |
parent | 32b7d4dfc1eefd1081c5bf9533c25616aee129bd (diff) | |
download | external_llvm-91a62c34d8e40f3f5b51b07b2edb156f7bcbbffc.zip external_llvm-91a62c34d8e40f3f5b51b07b2edb156f7bcbbffc.tar.gz external_llvm-91a62c34d8e40f3f5b51b07b2edb156f7bcbbffc.tar.bz2 |
[lit] Always list individual UNRESOLVED tests.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@187933 91177308-0d34-0410-b5e6-96231b3b80d8
-rwxr-xr-x | utils/lit/lit/main.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/utils/lit/lit/main.py b/utils/lit/lit/main.py index c11f020..41c2a2f 100755 --- a/utils/lit/lit/main.py +++ b/utils/lit/lit/main.py @@ -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 |