Index: lldb/examples/python/crashlog.py =================================================================== --- lldb/examples/python/crashlog.py +++ lldb/examples/python/crashlog.py @@ -471,7 +471,8 @@ def parse_process_info(self, json_data): self.crashlog.process_id = json_data['pid'] self.crashlog.process_identifier = json_data['procName'] - self.crashlog.process_path = json_data['procPath'] + if 'procPath' in json_data: + self.crashlog.process_path = json_data['procPath'] def parse_crash_reason(self, json_exception): exception_type = json_exception['type'] Index: lldb/test/Shell/ScriptInterpreter/Python/Crashlog/Inputs/interactive_crashlog/multithread-test.ips =================================================================== --- lldb/test/Shell/ScriptInterpreter/Python/Crashlog/Inputs/interactive_crashlog/multithread-test.ips +++ lldb/test/Shell/ScriptInterpreter/Python/Crashlog/Inputs/interactive_crashlog/multithread-test.ips @@ -52,7 +52,6 @@ "procExitAbsTime": 2823154294289, "procLaunch": "2022-07-28 11:10:19.4122 -0700", "procName": "multithread-test", - "procPath": "/Users/USER/*/multithread-test", "procRole": "Unspecified", "procStartAbsTime": 2823154159663, "responsiblePid": 1640,