[Lldb-commits] [lldb] r142549 - /lldb/trunk/test/functionalities/watchpoint/watchpoint_commands/condition/TestWatchpointConditionCmd.py

Johnny Chen johnny.chen at apple.com
Wed Oct 19 15:17:06 PDT 2011


Author: johnny
Date: Wed Oct 19 17:17:06 2011
New Revision: 142549

URL: http://llvm.org/viewvc/llvm-project?rev=142549&view=rev
Log:
Missed this file when doing r142543 to temporarily relax the expected substrings for watchpoint creation output.

Modified:
    lldb/trunk/test/functionalities/watchpoint/watchpoint_commands/condition/TestWatchpointConditionCmd.py

Modified: lldb/trunk/test/functionalities/watchpoint/watchpoint_commands/condition/TestWatchpointConditionCmd.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/functionalities/watchpoint/watchpoint_commands/condition/TestWatchpointConditionCmd.py?rev=142549&r1=142548&r2=142549&view=diff
==============================================================================
--- lldb/trunk/test/functionalities/watchpoint/watchpoint_commands/condition/TestWatchpointConditionCmd.py (original)
+++ lldb/trunk/test/functionalities/watchpoint/watchpoint_commands/condition/TestWatchpointConditionCmd.py Wed Oct 19 17:17:06 2011
@@ -60,7 +60,8 @@
         # With a condition of 'global==5'.
         self.expect("frame variable -w write -g -L global", WATCHPOINT_CREATED,
             substrs = ['Watchpoint created', 'size = 4', 'type = w',
-                       '%s:%d' % (self.source, self.decl)])
+                       #'%s:%d' % (self.source, self.decl)])
+                       ':%d' % (self.decl)])
 
         self.runCmd("watchpoint modify -c 'global==5'")
 





More information about the lldb-commits mailing list