Some rewordings of the assert messages for process stopped due to breakpoint.

llvm-svn: 118739
This commit is contained in:
Johnny Chen 2010-11-10 23:46:38 +00:00
parent c4dd2349c7
commit 5d6c464f46
1 changed files with 3 additions and 2 deletions

View File

@ -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"