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_compileunit.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_compileunit.py')
-rw-r--r-- | lldb/test/python_api/default-constructor/sb_compileunit.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lldb/test/python_api/default-constructor/sb_compileunit.py b/lldb/test/python_api/default-constructor/sb_compileunit.py index 1bee4d5a39d..9c2e597203c 100644 --- a/lldb/test/python_api/default-constructor/sb_compileunit.py +++ b/lldb/test/python_api/default-constructor/sb_compileunit.py @@ -11,3 +11,5 @@ def fuzz_obj(obj): obj.GetLineEntryAtIndex(0xffffffff) obj.FindLineEntryIndex(0, 0xffffffff, None) obj.GetDescription(lldb.SBStream()) + for line_entry in obj: + print line_entry |