(self, *args, **env)
| 86 | verbose = True |
| 87 | |
| 88 | def __init__(self, *args, **env): |
| 89 | # Let stderr through to let pytest display it separately on errors |
| 90 | gdb_env = environment_for_gdb() |
| 91 | gdb_env.update(env) |
| 92 | self.proc = subprocess.Popen(gdb_command + list(args), |
| 93 | env=gdb_env, bufsize=0, |
| 94 | stdin=subprocess.PIPE, |
| 95 | stdout=subprocess.PIPE) |
| 96 | self.last_stdout = [] |
| 97 | self.last_stdout_line = b"" |
| 98 | |
| 99 | def wait_until_ready(self): |
| 100 | """ |
nothing calls this directly
no test coverage detected