SBValue::Watch() and SBValue::WatchPointee() are now the official API for creating
a watchpoint for either the variable encapsulated by SBValue (Watch) or the pointee encapsulated by SBValue (WatchPointee). Removed SBFrame::WatchValue() and SBFrame::WatchLocation() API as a result of that. Modified the watchpoint related test suite to reflect the change. Plus replacing WatchpointLocation with Watchpoint throughout the code base. There are still cleanups to be dome. This patch passes the whole test suite. Check it in so that we aggressively catch regressions. llvm-svn: 141925
This commit is contained in:
@@ -350,14 +350,14 @@ class APIDefaultConstructorTestCase(TestBase):
|
||||
sb_valuelist.fuzz_obj(obj)
|
||||
|
||||
@python_api_test
|
||||
def test_SBWatchpointLocation(self):
|
||||
obj = lldb.SBWatchpointLocation()
|
||||
def test_SBWatchpoint(self):
|
||||
obj = lldb.SBWatchpoint()
|
||||
if self.TraceOn():
|
||||
print obj
|
||||
self.assertFalse(obj)
|
||||
# Do fuzz testing on the invalid obj, it should not crash lldb.
|
||||
import sb_watchpointlocation
|
||||
sb_watchpointlocation.fuzz_obj(obj)
|
||||
import sb_watchpoint
|
||||
sb_watchpoint.fuzz_obj(obj)
|
||||
|
||||
|
||||
if __name__ == '__main__':
|
||||
|
||||
Reference in New Issue
Block a user