Lines Matching full:hook
2 Test lldb target stop-hook mechanism to see whether it fires off correctly .
13 mydir = os.path.join("functionalities", "stop-hook")
18 """Test the stop-hook mechanism."""
25 """Test the stop-hook mechanism."""
33 self.begl = line_number('main.cpp', '// Set breakpoint here to test target stop-hook.')
34 self.endl = line_number('main.cpp', '// End of the line range for which stop-hook is to be run.')
36 self.line = line_number('main.cpp', '// Another breakpoint which is outside of the stop-hook range.')
39 """Test the stop-hook mechanism."""
42 add_prompt = "Enter your stop hook command(s). Type 'DONE' to end.\r\n> "
52 # Set the breakpoint, followed by the target stop-hook commands.
58 child.sendline('target stop-hook add -f main.cpp -l %d -e %d' % (self.begl, self.endl))
64 child.sendline('target stop-hook list')
66 # Now run the program, expect to stop at the the first breakpoint which is within the stop-hook range.
71 # Expecting to find the output emitted by the firing of our stop hook.
73 # This is orthogonal to the main stop hook test, but this example shows a bug in
81 # Now continue the inferior, we'll stop at another breakpoint which is outside the stop-hook range.
83 child.expect_exact('// Another breakpoint which is outside of the stop-hook range.')
86 child.expect_exact('// Another breakpoint which is outside of the stop-hook range.')