[Lldb-commits] [lldb] r118739 - /lldb/trunk/test/lldbtest.py

Johnny Chen johnny.chen at apple.com
Wed Nov 10 15:46:38 PST 2010


Author: johnny
Date: Wed Nov 10 17:46:38 2010
New Revision: 118739

URL: http://llvm.org/viewvc/llvm-project?rev=118739&view=rev
Log:
Some rewordings of the assert messages for process stopped due to breakpoint.

Modified:
    lldb/trunk/test/lldbtest.py

Modified: lldb/trunk/test/lldbtest.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/lldbtest.py?rev=118739&r1=118738&r2=118739&view=diff
==============================================================================
--- lldb/trunk/test/lldbtest.py (original)
+++ lldb/trunk/test/lldbtest.py Wed Nov 10 17:46:38 2010
@@ -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"
 





More information about the lldb-commits mailing list