Lines Matching refs:child
43 # So that the child gets torn down after the test.
44 self.child = pexpect.spawn('%s %s %s' % (self.lldbHere, self.lldbOption, exe))
45 child = self.child
47 # Turn on logging for what the child sends back.
49 child.logfile_read = sys.stdout
51 child.expect_exact(prompt)
52 child.sendline('breakpoint set %s' % break_spec)
53 child.expect_exact(prompt)
54 child.sendline('run')
55 child.expect_exact(prompt)
62 child.sendline('next') # Aka 'thread step-over'.
63 child.expect_exact(prompt)
65 child.sendline('quit')
67 self.child.expect(pexpect.EOF)
71 self.child = None