Home | History | Annotate | Download | only in stop-hook

Lines Matching refs:child

45         # So that the child gets torn down after the test.
46 self.child = pexpect.spawn('%s %s %s' % (self.lldbHere, self.lldbOption, exe))
47 child = self.child
48 # Turn on logging for what the child sends back.
50 child.logfile_read = sys.stdout
53 child.expect_exact(prompt)
54 child.sendline('breakpoint set -f main.cpp -l %d' % self.begl)
55 child.expect_exact(prompt)
56 child.sendline('breakpoint set -f main.cpp -l %d' % self.line)
57 child.expect_exact(prompt)
58 child.sendline('target stop-hook add -f main.cpp -l %d -e %d' % (self.begl, self.endl))
59 child.expect_exact(add_prompt)
60 child.sendline('expr ptr')
61 child.expect_exact(add_prompt1)
62 child.sendline('DONE')
63 child.expect_exact(prompt)
64 child.sendline('target stop-hook list')
67 child.expect_exact(prompt)
68 child.sendline('run')
69 child.expect_exact(prompt)
70 child.sendline('thread step-over')
72 child.expect_exact('(void *) $')
78 child.sendline('frame info')
79 child.expect_exact('at main.cpp:%d'%self.correct_step_line)
82 child.sendline('process continue')
83 child.expect_exact('// Another breakpoint which is outside of the stop-hook range.')
84 #self.DebugPExpect(child)
85 child.sendline('thread step-over')
86 child.expect_exact('// Another breakpoint which is outside of the stop-hook range.')
87 #self.DebugPExpect(child)
89 self.expect(child.before, exe=False, matching=False,