Lines Matching refs:child
41 # So that the child gets torn down after the test.
42 self.child = pexpect.spawn('%s %s %s' % (self.lldbHere, self.lldbOption, exe))
43 child = self.child
45 # Turn on logging for what the child sends back.
47 child.logfile_read = sys.stdout
49 child.expect_exact(prompt)
50 child.sendline('breakpoint set -f %s -l %d' % (self.source, self.line_to_break))
51 child.expect_exact(prompt)
52 child.sendline('run')
53 child.expect_exact(prompt)
58 child.sendline(expr_cmd1)
59 child.expect_exact(prompt)
60 child.sendline(expr_cmd2)
61 child.expect_exact(prompt)
63 child.sendline('quit')
65 self.child.expect(pexpect.EOF)
69 self.child = None