[Lldb-commits] [lldb] r129574 - /lldb/trunk/test/lldbtest.py
Johnny Chen
johnny.chen at apple.com
Fri Apr 15 09:44:48 PDT 2011
Author: johnny
Date: Fri Apr 15 11:44:48 2011
New Revision: 129574
URL: http://llvm.org/viewvc/llvm-project?rev=129574&view=rev
Log:
Forgot to check in this change with http://llvm.org/viewvc/llvm-project?view=rev&revision=129542.
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=129574&r1=129573&r2=129574&view=diff
==============================================================================
--- lldb/trunk/test/lldbtest.py (original)
+++ lldb/trunk/test/lldbtest.py Fri Apr 15 11:44:48 2011
@@ -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."""
More information about the lldb-commits
mailing list