Lines Matching refs:command

259             command = [self.generator_cmd]
271 command = ["renode-test",
282 command = [self.generator_cmd, "-C", self.get_default_domain_build_dir(), target]
285 command = [self.binary]
288 command = [binary]
291 command = ["valgrind", "--error-exitcode=2",
296 ] + command
300 command.append(f"--seed={self.seed}")
302 command.extend(self.extra_test_args)
304 return command
344 command = self._create_command(robot_test)
347 " ".join(shlex.quote(word) for word in command) + os.linesep +
355 harness.run_robot_test(command, self)
360 command, stdout=subprocess.PIPE, stderr=stderr_log_fp, cwd=self.build_dir, env=env
549 command = ["west", "flash", "--skip-rebuild", "-d", self.build_dir]
563 command.append("--runner")
564 command.append(runner)
591 command.append("--dev-id")
592 command.append(board_id)
597 command.append(f"--probe={board_id}")
599 command.append(f"--tool-opt=sn={board_id}")
604 command.append(param)
607 command.append('--')
608 command.extend(command_extra_args)
610 command = [self.generator_cmd, "-C", self.build_dir, "flash"]
612 return command
724 command = self._create_command(runner, hardware)
769 with subprocess.Popen(command, stderr=subprocess.PIPE, stdout=subprocess.PIPE) as proc:
1061 command = [self.generator_cmd]
1062 command += ["-C", sysbuild_build_dir, "run"]
1064 return command
1082 command = self._create_command(domain_build_dir)
1106 command,
1242 command = [self.generator_cmd]
1243 command += ["-C", sysbuild_build_dir, "run"]
1245 return command
1390 command = self._create_command(domain_build_dir)
1398 with subprocess.Popen(command, stdout=subprocess.DEVNULL, stderr=subprocess.STDOUT,