Lines Matching refs:child
39 # So that the child gets torn down after the test.
40 self.child = pexpect.spawn('%s %s %s' % (self.lldbHere, self.lldbOption, exe))
41 child = self.child
42 # Turn on logging for what the child sends back.
44 child.logfile_read = sys.stdout
48 child.expect_exact(prompt)
49 child.sendline('breakpoint set -f main.c -l %d' % self.line)
50 child.expect_exact(prompt)
51 child.sendline('run')
52 child.expect_exact(prompt)
53 child.sendline('script')
54 child.expect_exact(python_prompt)
60 child.sendline('print lldb.debugger')
61 child.expect_exact(python_prompt)
62 self.expect(child.before, exe=False,
65 child.sendline('print lldb.target')
66 child.expect_exact(python_prompt)
67 self.expect(child.before, exe=False,
70 child.sendline('print lldb.process')
71 child.expect_exact(python_prompt)
72 self.expect(child.before, exe=False,
75 child.sendline('print lldb.thread')
76 child.expect_exact(python_prompt)
77 self.expect(child.before, exe=False,
80 child.sendline('print lldb.frame')
81 child.expect_exact(python_prompt)
82 self.expect(child.before, exe=False,