diff options
Diffstat (limited to 'lldb/test/python_api/default-constructor/sb_process.py')
-rw-r--r-- | lldb/test/python_api/default-constructor/sb_process.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lldb/test/python_api/default-constructor/sb_process.py b/lldb/test/python_api/default-constructor/sb_process.py index a54dae2331c..4f892e57f14 100644 --- a/lldb/test/python_api/default-constructor/sb_process.py +++ b/lldb/test/python_api/default-constructor/sb_process.py @@ -41,3 +41,5 @@ def fuzz_obj(obj): obj.LoadImage(lldb.SBFileSpec(), error) obj.UnloadImage(0) obj.Clear() + for thread in obj: + print thread |