"""
Use lldb Python SBTarget API to iterate on the watchpoint(s) for the target.
"""
import lldb
from lldbsuite.test.decorators import *
from lldbsuite.test.lldbtest import *
from lldbsuite.test import lldbutil
class WatchpointIteratorTestCase(TestBase):
NO_DEBUG_INFO_TESTCASE = True
def affected_by_radar_34564183(self):
return (
self.getArchitecture() in ["armv7", "armv7k", "arm64_32"]
) and self.platformIsDarwin()
def setUp(self):
TestBase.setUp(self)
self.source = "main.c"
self.line = line_number(self.source, "// Set break point at this line.")
def test_watch_iter(self):
"""Exercise SBTarget.watchpoint_iter() API to iterate on the available watchpoints."""
self.build()
exe = self.getBuildArtifact("a.out")
target = self.dbg.CreateTarget(exe)
self.assertTrue(target, VALID_TARGET)
breakpoint = target.BreakpointCreateByLocation(self.source, self.line)
self.assertTrue(
breakpoint and breakpoint.GetNumLocations() == 1, VALID_BREAKPOINT
)
process = target.LaunchSimple(None, None, self.get_process_working_directory())
process = target.GetProcess()
self.assertState(process.GetState(), lldb.eStateStopped, PROCESS_STOPPED)
thread = lldbutil.get_stopped_thread(process, lldb.eStopReasonBreakpoint)
frame0 = thread.GetFrameAtIndex(0)
value = frame0.FindValue("global", lldb.eValueTypeVariableGlobal)
error = lldb.SBError()
watchpoint = value.Watch(True, False, True, error)
self.assertTrue(
value and watchpoint, "Successfully found the variable and set a watchpoint"
)
self.DebugSBValue(value)
if not self.TraceOn():
self.HideStdout()
self.assertEqual(target.GetNumWatchpoints(), 1)
self.assertTrue(watchpoint.IsEnabled())
watch_id = watchpoint.GetID()
self.assertNotEqual(watch_id, 0)
process.Continue()
if not self.TraceOn():
self.HideStdout()
lldbutil.print_stacktraces(process)
thread = lldbutil.get_stopped_thread(process, lldb.eStopReasonWatchpoint)
self.assertTrue(thread, "The thread stopped due to watchpoint")
self.DebugSBValue(value)
print(lldbutil.get_description(watchpoint, lldb.eDescriptionLevelFull))
watchpoint.SetEnabled(False)
self.assertFalse(watchpoint.IsEnabled())
process.Continue()
self.assertEqual(process.GetState(), lldb.eStateExited, PROCESS_EXITED)
for watchpoint in target.watchpoint_iter():
self.assertTrue(watchpoint)
self.assertEqual(watchpoint.GetWatchSize(), 4)
self.assertEqual(watchpoint.GetHitCount(), 1)
print(watchpoint)