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):
1042
1042
for thread in crash_log .threads :
1043
1043
if thread .did_crash ():
1044
1044
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 ):
1046
1046
image .resolve = True
1047
1047
1048
1048
futures = []
Original file line number Diff line number Diff line change 3
3
# RUN: cp %S/Inputs/a.out.ips %t.crash
4
4
# RUN: %python %S/patch-crashlog.py --binary %t.out --crashlog %t.crash --offsets '{"main":20, "bar":9, "foo":16}' --json
5
5
# 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
6
7
7
8
# RUN: cp %S/Inputs/a.out.ips %t.nometadata.crash
8
9
# 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