Home | History | Annotate | Download | only in startup

Lines Matching refs:child

51             # So that the child gets torn down after the test.
52 self.child = pexpect.spawn('%s %s' % (self.lldbHere, self.lldbOption))
53 child = self.child
55 # Turn on logging for what the child sends back.
57 child.logfile_read = sys.stdout
61 child.sendline('file %s' % exe) # Aka 'target create'.
62 child.expect_exact(prompt)
66 child.sendline('breakpoint set %s' % break_spec)
67 child.expect_exact(prompt)
71 child.sendline('run')
72 child.expect_exact(prompt)
74 child.sendline('quit')
76 self.child.expect(pexpect.EOF)
80 # The test is about to end and if we come to here, the child process has
82 self.child = None