diff options
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 |