[Lldb-commits] [PATCH] D91130: [crashlog] Implement parser for JSON encoded crashlogs
Greg Clayton via Phabricator via lldb-commits
lldb-commits at lists.llvm.org
Tue Nov 10 16:41:08 PST 2020
clayborg added a comment.
JSON crash logs are almost here??? I remember asking for those back when I was at Apple! Great news.
It would be nice to have a crash log from a small but real process we might be able to load as an end to end test?
================
Comment at: lldb/examples/python/crashlog.py:413-414
+ self.parse_process_info(self.data)
+ self.parse_images(self.data['usedImages'])
+ self.parse_threads(self.data['threads'])
+
----------------
you ok with this raising throwing an exception when/if these key/value pairs are not in the file?
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D91130/new/
https://reviews.llvm.org/D91130
More information about the lldb-commits
mailing list