Skip to content

Commit 3586cf4

Browse files
committed
Fix copy-paste mistakes
1 parent d9c0b0e commit 3586cf4

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

lldb/bindings/python/python-wrapper.swig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1012,7 +1012,7 @@ static void LLDBSwigPythonCallPythonLogOutputCallback(const char *str,
10121012
}
10131013
}
10141014

1015-
// For DebuggerTerminateCallback functions
1015+
// For CommandPrintCallback functions
10161016
static CommandReturnObjectCallbackResult LLDBSwigPythonCallPythonCommandPrintCallback(SBCommandReturnObject& result, void *callback_baton) {
10171017
SWIG_Python_Thread_Block swig_thread_block;
10181018

lldb/test/API/python_api/interpreter_callback/TestCommandInterepterPrintCallback.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
from lldbsuite.test import lldbutil
55

66

7-
class BreakpointAPITestCase(TestBase):
7+
class CommandInterepterPrintCallbackTest(TestBase):
88
NO_DEBUG_INFO_TESTCASE = True
99

1010
def run_command_interpreter_with_output_file(self, out_filename, input_str):
@@ -15,7 +15,7 @@ def run_command_interpreter_with_output_file(self, out_filename, input_str):
1515
self.dbg.RunCommandInterpreter(True, False, opts, 0, False, False)
1616

1717
def test_command_interpreter_print_callback(self):
18-
"""Make sure that if an SBBreakpoint gets deleted its IsValid returns false."""
18+
"""Test the command interpreter print callback."""
1919
self.build()
2020
exe = self.getBuildArtifact("a.out")
2121

0 commit comments

Comments
 (0)