Lines Matching refs:cmd
95 def __init__(self, rc, cmd, err):
97 self.cmd = cmd
101 return _("The command {cmd}\nexited with return code {rc} "
109 def __init__(self, cmd, lines):
111 self.cmd = cmd
114 return _("The command {cmd} produced the following lines "
284 cmd = ["python{0}.{1}".format(analysis_major, analysis_minor), exec_file,
292 cmd.extend(run_paths)
294 sp = subprocess.Popen(cmd, env=newenv, stdout=subprocess.PIPE,
297 return [], [PythonSubprocessError(None, " ".join(cmd),\
302 errs.append(PythonSubprocessError(sp.returncode, " ".join(cmd),
321 errs.append(PythonSubprocessBadLine(" ".join(cmd), bad_lines))