Home | History | Annotate | Download | only in testrunner

Lines Matching refs:subprocess

21 import subprocess
39 """Spawn and retry a subprocess to run the given shell command.
66 """Spawns a subprocess to run the given shell command.
90 output_dest = subprocess.PIPE
95 stdin_dest = subprocess.PIPE
98 pipe = subprocess.Popen(
103 stderr=subprocess.STDOUT,
167 subproc = subprocess.Popen(binary, stdout=subprocess.PIPE,
168 stderr=subprocess.STDOUT)
175 subproc = subprocess.Popen(["/usr/bin/valgrind", "--tool=memcheck",
177 stdout=subprocess.PIPE, stderr=subprocess.STDOUT)