lldb: avoid mixing "Hit breakpoint" message with other output.

This commit is contained in:
Eduard-Mihai Burtescu 2019-09-09 17:37:38 +03:00
parent 824383d4ab
commit 625a9d6a4b
1 changed files with 4 additions and 1 deletions

View File

@ -45,7 +45,10 @@ def normalize_whitespace(s):
def breakpoint_callback(frame, bp_loc, dict):
"""This callback is registered with every breakpoint and makes sure that the
frame containing the breakpoint location is selected"""
frame containing the breakpoint location is selected """
# HACK(eddyb) print a newline to avoid continuing an unfinished line.
print("")
print("Hit breakpoint " + str(bp_loc))
# Select the frame and the thread containing it