Home | History | Annotate | Download | only in testrunner

Lines Matching full:command

32   """Sets behavior of RunCommand to throw AbortError if command process returns
39 """Spawn and retry a subprocess to run the given shell command.
42 cmd: shell command to run
43 timeout_time: time in seconds to wait for command to run before aborting.
44 retry_count: number of times to retry command
45 return_output: if True return output of command as string. Otherwise,
46 direct output of command to stdout.
49 output of command
66 """Spawns a subprocess to run the given shell command.
69 cmd: shell command to run
70 timeout_time: time in seconds to wait for command to run before aborting.
71 return_output: if True return output of command as string. Otherwise,
72 direct output of command to stdout.
75 output of command
77 errors.WaitForResponseTimedOutError if command did not complete within
79 errors.AbortError is command returned error code and SetAbortOnError is on.
151 """Run a command on the host (opt using valgrind).
156 The command can be run under valgrind in which case all the
161 valgrind: If True the command will be run under valgrind.
164 The command exit code (int)