Lines Matching refs:cmd
73 def run_and_print(cmd):
74 print(cmd)
75 os.system(cmd)
77 def run_command(cmd, timeout=DEFAULT_TIMEOUT):
78 proc = subprocess.Popen(cmd, stderr=subprocess.PIPE, stdout=subprocess.PIPE, shell=True)
291 def run_cmd(self, cmd):
292 print(cmd)
293 ret = run_command(cmd, self.args.timeout)
340 cmd = f'{self.ts2abc} {self.builtin}.ts -m --merge-abc -q -b'
342 cmd = (f'{self.es2abc} --module --merge-abc --extension=ts '
344 print(cmd)
345 os.system(cmd)
349 cmd = cmd_map[self.step]
350 print(cmd)
351 os.system(cmd)
359 for cmd in cmd_map[self.step]:
360 print(cmd)
361 os.system(cmd)
391 cmd = cmd_map[self.step]
392 print(cmd)
396 os.system(cmd)