Home | History | Annotate | Download | only in disassembly

Lines Matching refs:child

54         # So that the child gets torn down after the test.
55 self.child = pexpect.spawn('%s --nx %s' % (gdb_exe_path, exe))
56 child = self.child
58 # Turn on logging for what the child sends back.
60 child.logfile_read = sys.stdout
62 child.expect_exact(prompt)
63 child.sendline('break %s' % function)
64 child.expect_exact(prompt)
65 child.sendline('run')
66 child.expect_exact(prompt)
73 child.sendline('disassemble')
74 child.expect_exact(prompt)
75 child.sendline('next')
76 child.expect_exact(prompt)
78 child.sendline('quit')
79 child.expect_exact('The program is running. Exit anyway?')
80 child.sendline('y')
82 self.child.expect(pexpect.EOF)
88 self.child = None