forked from OSchip/llvm-project
Some rewordings of the assert messages for process stopped due to breakpoint.
llvm-svn: 118739
This commit is contained in:
parent
c4dd2349c7
commit
5d6c464f46
|
@ -151,9 +151,10 @@ BREAKPOINT_HIT_THRICE = "Breakpoint resolved with hit cout = 3"
|
|||
|
||||
STEP_OUT_SUCCEEDED = "Thread step-out succeeded"
|
||||
|
||||
STOPPED_DUE_TO_BREAKPOINT = "Process is stopped due to breakpoint"
|
||||
STOPPED_DUE_TO_BREAKPOINT = "Process should be stopped due to breakpoint"
|
||||
|
||||
STOPPED_DUE_TO_BREAKPOINT_WITH_STOP_REASON_AS = "Process is stopped due to breakpoint (actual stop reason: '%s')"
|
||||
STOPPED_DUE_TO_BREAKPOINT_WITH_STOP_REASON_AS = "%s, %s" % (
|
||||
STOPPED_DUE_TO_BREAKPOINT, "instead, the actual stop reason is: '%s'")
|
||||
|
||||
STOPPED_DUE_TO_BREAKPOINT_CONDITION = "Stopped due to breakpoint condition"
|
||||
|
||||
|
|
Loading…
Reference in New Issue