diff options
Diffstat (limited to 'lldb/test/python_api/default-constructor/sb_target.py')
-rw-r--r-- | lldb/test/python_api/default-constructor/sb_target.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lldb/test/python_api/default-constructor/sb_target.py b/lldb/test/python_api/default-constructor/sb_target.py index e1a5db63cf3..d7eab047693 100644 --- a/lldb/test/python_api/default-constructor/sb_target.py +++ b/lldb/test/python_api/default-constructor/sb_target.py @@ -51,3 +51,7 @@ def fuzz_obj(obj): obj.GetBroadcaster() obj.GetDescription(lldb.SBStream(), lldb.eDescriptionLevelBrief) obj.Clear() + for module in obj.module_iter(): + print module + for bp in obj.breakpoint_iter(): + print bp |