Some rewordings of the assert messages for process stopped due to breakpoint.
git-svn-id: https://llvm.org/svn/llvm-project/llvdb/trunk@118739 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/test/lldbtest.py b/test/lldbtest.py
index e49b84e..8b32efc 100644
--- a/test/lldbtest.py
+++ b/test/lldbtest.py
@@ -151,9 +151,10 @@
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"