[Lldb-commits] [lldb] r137625 - /lldb/trunk/test/python_api/default-constructor/sb_address.py
Johnny Chen
johnny.chen at apple.com
Mon Aug 15 11:19:51 PDT 2011
Author: johnny
Date: Mon Aug 15 13:19:51 2011
New Revision: 137625
URL: http://llvm.org/viewvc/llvm-project?rev=137625&view=rev
Log:
Add new SBAddress APIs to the fuzz tests.
Modified:
lldb/trunk/test/python_api/default-constructor/sb_address.py
Modified: lldb/trunk/test/python_api/default-constructor/sb_address.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/python_api/default-constructor/sb_address.py?rev=137625&r1=137624&r2=137625&view=diff
==============================================================================
--- lldb/trunk/test/python_api/default-constructor/sb_address.py (original)
+++ lldb/trunk/test/python_api/default-constructor/sb_address.py Mon Aug 15 13:19:51 2011
@@ -11,4 +11,12 @@
obj.SetLoadAddress(0xffff, lldb.SBTarget())
obj.OffsetAddress(sys.maxint)
obj.GetDescription(lldb.SBStream())
+ obj.GetSectionType()
+ obj.GetSymbolContext(lldb.eSymbolContextEverything)
+ obj.GetModule()
+ obj.GetCompileUnit()
+ obj.GetFunction()
+ obj.GetBlock()
+ obj.GetSymbol()
+ obj.GetLineEntry()
obj.Clear()
More information about the lldb-commits
mailing list