Lines Matching refs:command
144 self.command("echo 'Connected to GDB comparator'")
148 self.command("quit", expected_log="Disposed")
150 def command(self, input: str, expected_log: str = "") -> None: member in Renode
214 …def run_command(self, command: str, timeout: float = 10, confirm: bool = False, dont_wait_for_outp…
229 self.last_cmd = command
230 self.process.write(command + "\n")
235 result = self.process.expect(re.escape(command) + r".+\n", timeout, async_=async_)
340 …self.cmd = args.command if args.command else self.build_command_from_register_list(args.registers.…
415 …for name, command in [("Opcode at previous pc", f"x/i {previous_pc}"), ("Frame", "frame"), ("Regis…
417 GDBComparator.compare_outputs(await self.run_command(command))
461 … renode.command("include @" + path.abspath(args.renode_script), expected_log="System bus created")
462 …renode.command(f"machine StartGdbServer {args.renode_gdb_port}", expected_log=f"started on port :{…
464 renode.command("start")
562 print(args.command)