summaryrefslogtreecommitdiffstats
path: root/lldb/test/python_api/default-constructor/sb_target.py
diff options
context:
space:
mode:
Diffstat (limited to 'lldb/test/python_api/default-constructor/sb_target.py')
-rw-r--r--lldb/test/python_api/default-constructor/sb_target.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/lldb/test/python_api/default-constructor/sb_target.py b/lldb/test/python_api/default-constructor/sb_target.py
index 3f15a1a0565..3b0a70cb8b8 100644
--- a/lldb/test/python_api/default-constructor/sb_target.py
+++ b/lldb/test/python_api/default-constructor/sb_target.py
@@ -47,6 +47,7 @@ def fuzz_obj(obj):
obj.EnableAllWatchpoints()
obj.DisableAllWatchpoints()
obj.DeleteAllWatchpoints()
+ obj.WatchAddress(123, 8, True, True)
obj.GetBroadcaster()
obj.GetDescription(lldb.SBStream(), lldb.eDescriptionLevelBrief)
obj.Clear()
@@ -54,5 +55,5 @@ def fuzz_obj(obj):
print module
for bp in obj.breakpoint_iter():
print bp
- for wp_loc in obj.watchpoint_iter():
- print wp_loc
+ for wp in obj.watchpoint_iter():
+ print wp
OpenPOWER on IntegriCloud