[Lldb-commits] [lldb] r141036 - /lldb/trunk/test/python_api/default-constructor/sb_target.py
Johnny Chen
johnny.chen at apple.com
Mon Oct 3 15:08:39 PDT 2011
Author: johnny
Date: Mon Oct 3 17:08:35 2011
New Revision: 141036
URL: http://llvm.org/viewvc/llvm-project?rev=141036&view=rev
Log:
Add fuzz call for watchpoint location iterator, too.
Modified:
lldb/trunk/test/python_api/default-constructor/sb_target.py
Modified: lldb/trunk/test/python_api/default-constructor/sb_target.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/python_api/default-constructor/sb_target.py?rev=141036&r1=141035&r2=141036&view=diff
==============================================================================
--- lldb/trunk/test/python_api/default-constructor/sb_target.py (original)
+++ lldb/trunk/test/python_api/default-constructor/sb_target.py Mon Oct 3 17:08:35 2011
@@ -55,3 +55,5 @@
print module
for bp in obj.breakpoint_iter():
print bp
+ for wp_loc in obj.watchpoint_location_iter():
+ print wp_loc
More information about the lldb-commits
mailing list