Home | History | Annotate | Download | only in disassembly

Lines Matching refs:child

73         # So that the child gets torn down after the test.
74 self.child = pexpect.spawn('%s %s %s' % (self.lldbExec, self.lldbOption, exe))
75 child = self.child
77 # Turn on logging for what the child sends back.
79 child.logfile_read = sys.stdout
81 child.expect_exact(prompt)
82 child.sendline('breakpoint set -F %s' % function)
83 child.expect_exact(prompt)
84 child.sendline('run')
85 child.expect_exact(prompt)
92 child.sendline('disassemble -f')
93 child.expect_exact(prompt)
94 child.sendline('next')
95 child.expect_exact(prompt)
97 child.sendline('quit')
99 self.child.expect(pexpect.EOF)
106 self.child = None
113 # So that the child gets torn down after the test.
114 self.child = pexpect.spawn('%s --nx %s' % (self.gdbExec, exe))
115 child = self.child
117 # Turn on logging for what the child sends back.
119 child.logfile_read = sys.stdout
121 child.expect_exact(prompt)
122 child.sendline('break %s' % function)
123 child.expect_exact(prompt)
124 child.sendline('run')
125 child.expect_exact(prompt)
132 child.sendline('disassemble')
133 child.expect_exact(prompt)
134 child.sendline('next')
135 child.expect_exact(prompt)
137 child.sendline('quit')
138 child.expect_exact('The program is running. Exit anyway?')
139 child.sendline('y')
141 self.child.expect(pexpect.EOF)
148 self.child = None