From 8c3dc3d0fd16f7bc486b7a06675c828fb0c5b7a5 Mon Sep 17 00:00:00 2001 From: Johnny Chen Date: Mon, 3 Oct 2011 22:08:35 +0000 Subject: [PATCH] Add fuzz call for watchpoint location iterator, too. llvm-svn: 141036 --- lldb/test/python_api/default-constructor/sb_target.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lldb/test/python_api/default-constructor/sb_target.py b/lldb/test/python_api/default-constructor/sb_target.py index d7eab047693b..6b7bf777a06c 100644 --- a/lldb/test/python_api/default-constructor/sb_target.py +++ b/lldb/test/python_api/default-constructor/sb_target.py @@ -55,3 +55,5 @@ def fuzz_obj(obj): print module for bp in obj.breakpoint_iter(): print bp + for wp_loc in obj.watchpoint_location_iter(): + print wp_loc