[Lldb-commits] [lldb] r141041 - /lldb/trunk/test/python_api/default-constructor/sb_section.py

Johnny Chen johnny.chen at apple.com
Mon Oct 3 15:43:06 PDT 2011


Author: johnny
Date: Mon Oct  3 17:43:06 2011
New Revision: 141041

URL: http://llvm.org/viewvc/llvm-project?rev=141041&view=rev
Log:
Add fuzz call for sub-section iteration for SBSection.

Modified:
    lldb/trunk/test/python_api/default-constructor/sb_section.py

Modified: lldb/trunk/test/python_api/default-constructor/sb_section.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/python_api/default-constructor/sb_section.py?rev=141041&r1=141040&r2=141041&view=diff
==============================================================================
--- lldb/trunk/test/python_api/default-constructor/sb_section.py (original)
+++ lldb/trunk/test/python_api/default-constructor/sb_section.py Mon Oct  3 17:43:06 2011
@@ -18,3 +18,5 @@
     obj.GetSectionData(1000, 100)
     obj.GetSectionType()
     obj.GetDescription(lldb.SBStream())
+    for subsec in obj:
+        print subsec





More information about the lldb-commits mailing list