diff options
author | Johnny Chen <johnny.chen@apple.com> | 2011-10-03 22:02:59 +0000 |
---|---|---|
committer | Johnny Chen <johnny.chen@apple.com> | 2011-10-03 22:02:59 +0000 |
commit | b92574ffb96b1940619a12dd6a4aef123ec9af57 (patch) | |
tree | a8251b8774ef396ebf843fd7e1e7d4cb703481de /lldb/test/python_api/default-constructor/sb_breakpoint.py | |
parent | 892427e2fa3ca8ab37b5e9b3b63cee9f19251e5c (diff) | |
download | bcm5719-llvm-b92574ffb96b1940619a12dd6a4aef123ec9af57.tar.gz bcm5719-llvm-b92574ffb96b1940619a12dd6a4aef123ec9af57.zip |
Add fuzz calls for various iterators, too.
llvm-svn: 141035
Diffstat (limited to 'lldb/test/python_api/default-constructor/sb_breakpoint.py')
-rw-r--r-- | lldb/test/python_api/default-constructor/sb_breakpoint.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lldb/test/python_api/default-constructor/sb_breakpoint.py b/lldb/test/python_api/default-constructor/sb_breakpoint.py index 5ea5c62ad3e..8618050c33d 100644 --- a/lldb/test/python_api/default-constructor/sb_breakpoint.py +++ b/lldb/test/python_api/default-constructor/sb_breakpoint.py @@ -31,3 +31,5 @@ def fuzz_obj(obj): obj.GetNumResolvedLocations() obj.GetNumLocations() obj.GetDescription(lldb.SBStream()) + for bp_loc in obj: + print bp_loc |