Skip to content

Commit 99633e2

Browse files
authored
Merge pull request #2967 from jimingham/report-missing-breakpoint
I submitted the wrong version of the patch, with a bug along the
2 parents 1c0b39d + b2cc86f commit 99633e2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lldb/packages/Python/lldbsuite/test/lldbutil.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -890,7 +890,7 @@ def run_to_breakpoint_do_run(test, target, bkpt, launch_info = None,
890890
error_string = "Failed to hit initial breakpoint:\n%s\n"%(print_stacktraces(process, True))
891891
test.fail(error_string)
892892

893-
test.assertEqual(process.GetState(), lldb.eStateStopped, error_string)
893+
test.assertEqual(process.GetState(), lldb.eStateStopped)
894894

895895
# Frame #0 should be at our breakpoint.
896896
threads = get_threads_stopped_at_breakpoint(

0 commit comments

Comments
 (0)