summaryrefslogtreecommitdiffstats
path: root/lldb/test/python_api/sbdata/TestSBData.py
diff options
context:
space:
mode:
authorGreg Clayton <gclayton@apple.com>2012-02-04 02:27:34 +0000
committerGreg Clayton <gclayton@apple.com>2012-02-04 02:27:34 +0000
commit81e871ed761101fb065a097b5b9351e179964d1a (patch)
tree8c23b46dff2d3d1953620bcebd77d445a2793358 /lldb/test/python_api/sbdata/TestSBData.py
parentd0ba3793aab037c831a0cefeafda8398591f5497 (diff)
downloadbcm5719-llvm-81e871ed761101fb065a097b5b9351e179964d1a.tar.gz
bcm5719-llvm-81e871ed761101fb065a097b5b9351e179964d1a.zip
Convert all python objects in our API to use overload the __str__ method
instead of the __repr__. __repr__ is a function that should return an expression that can be used to recreate an python object and we were using it to just return a human readable string. Fixed a crasher when using the new implementation of SBValue::Cast(SBType). Thread hardened lldb::SBValue and lldb::SBWatchpoint and did other general improvements to the API. Fixed a crasher in lldb::SBValue::GetChildMemberWithName() where we didn't correctly handle not having a target. llvm-svn: 149743
Diffstat (limited to 'lldb/test/python_api/sbdata/TestSBData.py')
-rw-r--r--lldb/test/python_api/sbdata/TestSBData.py7
1 files changed, 4 insertions, 3 deletions
diff --git a/lldb/test/python_api/sbdata/TestSBData.py b/lldb/test/python_api/sbdata/TestSBData.py
index 9d5b5c06765..e9856d7b85e 100644
--- a/lldb/test/python_api/sbdata/TestSBData.py
+++ b/lldb/test/python_api/sbdata/TestSBData.py
@@ -53,9 +53,9 @@ class SBDataAPICase(TestBase):
thread = process.GetThreadAtIndex(0)
frame = thread.GetSelectedFrame()
-
+ print frame
foobar = frame.FindVariable('foobar')
-
+ self.assertTrue(foobar.IsValid())
if self.TraceOn():
print foobar
@@ -98,6 +98,7 @@ class SBDataAPICase(TestBase):
self.assertTrue(data.GetUnsignedInt32(error, offset) == 0, 'do not read beyond end')
star_foobar = foobar.Dereference()
+ self.assertTrue(star_foobar.IsValid())
data = star_foobar.GetData()
@@ -118,7 +119,7 @@ class SBDataAPICase(TestBase):
nothing = foobar.CreateValueFromAddress("nothing", foobar_addr, star_foobar.GetType().GetBasicType(lldb.eBasicTypeInvalid))
new_foobar = foobar.CreateValueFromAddress("f00", foobar_addr, star_foobar.GetType())
-
+ self.assertTrue(new_foobar.IsValid())
if self.TraceOn():
print new_foobar
OpenPOWER on IntegriCloud