diff options
author | Matthias Braun <matze@braunis.de> | 2015-11-11 03:03:54 +0000 |
---|---|---|
committer | Matthias Braun <matze@braunis.de> | 2015-11-11 03:03:54 +0000 |
commit | 5bcb152f265b8fe384083bacd35dbd35700fcf27 (patch) | |
tree | e971d55ffc55e06d02017329256d096ad12f79a8 /llvm/utils/lit | |
parent | 19744ee6adbc4a563085954d0d0da77f4e44fa48 (diff) | |
download | bcm5719-llvm-5bcb152f265b8fe384083bacd35dbd35700fcf27.tar.gz bcm5719-llvm-5bcb152f265b8fe384083bacd35dbd35700fcf27.zip |
lit: Show all output with --show-all, even in combination with --succinct
I missed an earlier exit for the --succinct case when I introduced the
-a option.
llvm-svn: 252698
Diffstat (limited to 'llvm/utils/lit')
-rwxr-xr-x | llvm/utils/lit/lit/main.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/llvm/utils/lit/lit/main.py b/llvm/utils/lit/lit/main.py index 18c4a8c3aae..a413885ac9a 100755 --- a/llvm/utils/lit/lit/main.py +++ b/llvm/utils/lit/lit/main.py @@ -43,6 +43,7 @@ class TestingProgressDisplay(object): test.getFullName()) shouldShow = test.result.code.isFailure or \ + self.opts.showAllOutput or \ (not self.opts.quiet and not self.opts.succinct) if not shouldShow: return |