File tree Expand file tree Collapse file tree 2 files changed +2
-1
lines changed
test/Shell/ScriptInterpreter/Python/Crashlog Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -1042,7 +1042,7 @@ def SymbolicateCrashLog(crash_log, options):
10421042 for thread in crash_log .threads :
10431043 if thread .did_crash ():
10441044 for ident in thread .idents :
1045- for image in self . crashlog .find_images_with_identifier (ident ):
1045+ for image in crash_log .find_images_with_identifier (ident ):
10461046 image .resolve = True
10471047
10481048 futures = []
Original file line number Diff line number Diff line change 33# RUN: cp %S/Inputs/a.out.ips %t.crash
44# RUN: %python %S/patch-crashlog.py --binary %t.out --crashlog %t.crash --offsets '{"main":20, "bar":9, "foo":16}' --json
55# RUN: %lldb %t.out -o 'command script import lldb.macosx.crashlog' -o 'crashlog %t.crash' 2>&1 | FileCheck %s
6+ # RUN: %lldb %t.out -o 'command script import lldb.macosx.crashlog' -o 'crashlog -c %t.crash' 2>&1 | FileCheck %s
67
78# RUN: cp %S/Inputs/a.out.ips %t.nometadata.crash
89# RUN: %python %S/patch-crashlog.py --binary %t.out --crashlog %t.nometadata.crash --offsets '{"main":20, "bar":9, "foo":16}' --json --no-metadata
You can’t perform that action at this time.
0 commit comments