Home | History | Annotate | Download | only in stepping

Lines Matching refs:child

31         self.child = pexpect.spawn('%s %s' % (self.lldbHere, self.lldbOption))
32 self.child.expect_exact(prompt)
33 # So that the child gets torn down after the test.
34 child = self.child
36 # Turn on logging for what the child sends back.
38 child.logfile_read = sys.stdout
43 self.runHooks(child=child, child_prompt=prompt)
50 child.sendline('next') # Aka 'thread step-over'.
51 child.expect_exact(prompt)
53 child.sendline('quit')
55 self.child.expect(pexpect.EOF)
59 self.child = None