diff options
| author | Johnny Chen <johnny.chen@apple.com> | 2011-07-22 19:18:45 +0000 | 
|---|---|---|
| committer | Johnny Chen <johnny.chen@apple.com> | 2011-07-22 19:18:45 +0000 | 
| commit | 08c091002625c783cec9d4cd0f9b9763e1ecf357 (patch) | |
| tree | 8f61c17997bb10a8b01c9ab9c688890f7450251b /lldb/test/python_api | |
| parent | a67dd8fcccd0a819e077032052e1f1e16df261a8 (diff) | |
| download | bcm5719-llvm-08c091002625c783cec9d4cd0f9b9763e1ecf357.tar.gz bcm5719-llvm-08c091002625c783cec9d4cd0f9b9763e1ecf357.zip  | |
Add new API for SBAddress to the fuzz test:
SetLoadAddress (lldb::addr_t load_addr, 
               	lldb::SBTarget &target);
llvm-svn: 135793
Diffstat (limited to 'lldb/test/python_api')
| -rw-r--r-- | lldb/test/python_api/default-constructor/sb_address.py | 1 | 
1 files changed, 1 insertions, 0 deletions
diff --git a/lldb/test/python_api/default-constructor/sb_address.py b/lldb/test/python_api/default-constructor/sb_address.py index 0cafa865ac7..66c4cb0698e 100644 --- a/lldb/test/python_api/default-constructor/sb_address.py +++ b/lldb/test/python_api/default-constructor/sb_address.py @@ -8,6 +8,7 @@ import lldb  def fuzz_obj(obj):      obj.GetFileAddress()      obj.GetLoadAddress(lldb.SBTarget()) +    obj.SetLoadAddress(0xffff, lldb.SBTarget())      obj.OffsetAddress(sys.maxint)      obj.GetDescription(lldb.SBStream())      obj.Clear()  | 

