Specify a more meaningful assert message for TestDeadStrip.py.


git-svn-id: https://llvm.org/svn/llvm-project/llvdb/trunk@111294 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/test/dead-strip/TestDeadStrip.py b/test/dead-strip/TestDeadStrip.py
index d705bef..d37e268 100644
--- a/test/dead-strip/TestDeadStrip.py
+++ b/test/dead-strip/TestDeadStrip.py
@@ -32,7 +32,7 @@
         self.assertTrue(res.GetOutput().startswith(
             "Breakpoint created: 2: name = 'f2', module = a.out, locations = 0 "
             "(pending)"),
-                        BREAKPOINT_CREATED)
+                        BREAKPOINT_PENDING_CREATED)
 
         # Break by function name f3 (live code).
         self.ci.HandleCommand("breakpoint set -s a.out -n f3", res)
diff --git a/test/lldbtest.py b/test/lldbtest.py
index 75f7e51..703f9d0 100644
--- a/test/lldbtest.py
+++ b/test/lldbtest.py
@@ -43,6 +43,8 @@
 
 BREAKPOINT_CREATED = "Breakpoint created successfully"
 
+BREAKPOINT_PENDING_CREATED = "Pending breakpoint created successfully"
+
 BREAKPOINT_HIT_ONCE = "Breakpoint resolved with hit cout = 1"
 
 STOPPED_DUE_TO_BREAKPOINT = "Process state is stopped due to breakpoint"