Skip to content

Commit cc3c186

Browse files
debuginfo: Try to get minimal version of LLDB autotest framework running without crash with old LLDB version: Deactivate HandleCommand call for breakpoint setting.
1 parent 29fd68f commit cc3c186

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/etc/lldb_batchmode.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ def execute_command(command_interpreter, command):
9292
else:
9393
print_debug("registering breakpoint callback, id = " + str(breakpoint_id))
9494
callback_command = "breakpoint command add -F breakpoint_callback " + str(breakpoint_id)
95-
command_interpreter.HandleCommand(callback_command, res)
95+
# command_interpreter.HandleCommand(callback_command, res)
9696
if res.Succeeded():
9797
print_debug("successfully registered breakpoint callback, id = " + str(breakpoint_id))
9898
registered_breakpoints.add(breakpoint_id)

0 commit comments

Comments
 (0)