diff options
| author | Chad Rosier <mcrosier@apple.com> | 2011-10-24 21:56:50 +0000 |
|---|---|---|
| committer | Chad Rosier <mcrosier@apple.com> | 2011-10-24 21:56:50 +0000 |
| commit | 522b56d9d89d244b64b1914244969deec1fabd4f (patch) | |
| tree | 2038e323ef9a32bc77bb27fcd7da19d7a73ff68a /llvm/utils | |
| parent | 2098cb1e6f6de65aef630c7c53709ff3aec6cdd2 (diff) | |
| download | bcm5719-llvm-522b56d9d89d244b64b1914244969deec1fabd4f.tar.gz bcm5719-llvm-522b56d9d89d244b64b1914244969deec1fabd4f.zip | |
Add options to enable each individual level for the show-diagnostics tool.
rdar://9683410
llvm-svn: 142856
Diffstat (limited to 'llvm/utils')
| -rwxr-xr-x | llvm/utils/show-diagnostics | 34 |
1 files changed, 30 insertions, 4 deletions
diff --git a/llvm/utils/show-diagnostics b/llvm/utils/show-diagnostics index 3a69793abc9..b8ea8eae310 100755 --- a/llvm/utils/show-diagnostics +++ b/llvm/utils/show-diagnostics @@ -5,15 +5,40 @@ import plistlib def main(): from optparse import OptionParser, OptionGroup parser = OptionParser("""\ -usage: %prog [options] <path> +Usage: %prog [options] <path> Utility for dumping Clang-style logged diagnostics.\ """) + parser.add_option("-a", "--all", action="store_true", dest="all", + default=False, help="dump all messages.") + parser.add_option("-e", "--error", action="store_true", dest="error", + default=False, help="dump 'error' messages.") + parser.add_option("-f", "--fatal", action="store_true", dest="fatal", + default=False, help="dump 'fatal error' messages.") + parser.add_option("-i", "--ignored", action="store_true", dest="ignored", + default=False, help="dump 'ignored' messages.") + parser.add_option("-n", "--note", action="store_true", dest="note", + default=False, help="dump 'note' messages.") + parser.add_option("-w", "--warning", action="store_true", dest="warning", + default=False, help="dump 'warning' messages.") (opts, args) = parser.parse_args() if len(args) != 1: parser.error("invalid number of arguments") + levels = {'error': False, 'fatal error': False, 'ignored': False, + 'note': False, 'warning': False} + if opts.error: + levels['error'] = True + if opts.fatal: + levels['fatal error'] = True + if opts.ignored: + levels['ignored'] = True + if opts.note: + levels['note'] = True + if opts.warning: + levels['warning'] = True + path, = args # Read the diagnostics log. @@ -44,9 +69,10 @@ Utility for dumping Clang-style logged diagnostics.\ file = file_diags.get('main-file') print "*** %s ***" % file for d in file_diags.get('diagnostics', ()): - print "%s:%s:%s: %s: %s" % ( - d.get('filename'), d.get('line'), d.get('column'), - d.get('level'), d.get('message')) + if levels[d.get('level')] or opts.all: + print " %s:%s:%s: %s: %s" % ( + d.get('filename'), d.get('line'), d.get('column'), + d.get('level'), d.get('message')) if __name__ == "__main__": main() |

