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 | 403eeea0cf7e0ffffbc44391a7eaa183ed9ea316 (patch) | |
| tree | 2913bc3f88aa9402a78bffbdf8c551c3a768fc45 /llvm/utils/lit | |
| parent | 9ee3bb89c9c2d0f29dcafe5626d05833fe5a2943 (diff) | |
| download | bcm5719-llvm-403eeea0cf7e0ffffbc44391a7eaa183ed9ea316.tar.gz bcm5719-llvm-403eeea0cf7e0ffffbc44391a7eaa183ed9ea316.zip | |
[lit] Always list individual UNRESOLVED tests.
llvm-svn: 187933
Diffstat (limited to 'llvm/utils/lit')
| -rwxr-xr-x | llvm/utils/lit/lit/main.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/llvm/utils/lit/lit/main.py b/llvm/utils/lit/lit/main.py index c11f02030a2..41c2a2fb3d9 100755 --- a/llvm/utils/lit/lit/main.py +++ b/llvm/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 |

