Searched refs:run_command (Results 1 – 1 of 1) sorted by relevance
/Renode-v1.15.3-c57714d/tools/gdb_compare/ |
D | gdb_compare.py | 191 self.run_command("clear", async_=False) 192 self.run_command("set pagination off", async_=False) 193 self.run_command(f"file {debug_binary}", async_=False) 194 self.run_command(f"target remote :{port}", async_=False) 198 self.run_command("quit", dont_wait_for_output=True, async_=False) 203 self.run_command(type + (f" {delta}" if int(delta) > 1 else ""), timeout=adjusted_timeout) 207 self.run_command(f"info symbol {addr}", async_=False) 212 self.run_command("clear", async_=False) 214 …def run_command(self, command: str, timeout: float = 10, confirm: bool = False, dont_wait_for_outp… member in GDBInstance 284 self.run_command("i r pc") [all …]
|