Lines Matching refs:timeout
136 self.proc = pexpect.spawn(f"{binary} --disable-gui --plain --port {port}", timeout=20)
189 …self.process = pexpect.spawn(f"{gdb_binary} --silent --nx --nh", timeout=10, dimensions=self.dimen…
190 self.process.timeout = 120
203 self.run_command(type + (f" {delta}" if int(delta) > 1 else ""), timeout=adjusted_timeout)
214 …def run_command(self, command: str, timeout: float = 10, confirm: bool = False, dont_wait_for_outp…
235 result = self.process.expect(re.escape(command) + r".+\n", timeout, async_=async_)
242 self.process.expect([r".+\n", r"\(gdb\)"], timeout)
292 async def expect(self, timeout: float = 10) -> None:
300 self.task = self.process.expect([r".+\n", r"\(gdb\)"], timeout, async_=True)
411 … await self.run_command(type + (f" {delta}" if int(delta) > 1 else ""), timeout=adjusted_timeout)
459 reference = pexpect.spawn(args.reference_command, timeout=10)
624 await gdb_comparator.run_command("continue", timeout=120)