Forgot to check in this change with http://llvm.org/viewvc/llvm-project?view=rev&revision=129542.


git-svn-id: https://llvm.org/svn/llvm-project/llvdb/trunk@129574 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/test/lldbtest.py b/test/lldbtest.py
index bd72e6c..fcd68cf 100644
--- a/test/lldbtest.py
+++ b/test/lldbtest.py
@@ -159,6 +159,8 @@
 
 STEP_OUT_SUCCEEDED = "Thread step-out succeeded"
 
+STOPPED_DUE_TO_EXC_BAD_ACCESS = "Process should be stopped due to bad access exception"
+
 STOPPED_DUE_TO_BREAKPOINT = "Process should be stopped due to breakpoint"
 
 STOPPED_DUE_TO_BREAKPOINT_WITH_STOP_REASON_AS = "%s, %s" % (
@@ -223,7 +225,7 @@
             if line.find(string_to_match) != -1:
                 # Found our match.
                 return i+1
-    raise Exception("Unable to find %s within file %s" % (string_to_match, filename))
+    raise Exception("Unable to find '%s' within file %s" % (string_to_match, filename))
 
 def pointer_size():
     """Return the pointer size of the host system."""