Lines Matching refs:test_proc
171 test_proc = None
176 if not test_proc or not test_proc.pid:
180 for child in psutil.Process(test_proc.pid).children():
190 test_proc = subprocess.Popen(
196 test_proc.wait(timeout=self._timeout)
200 test_proc.terminate()
202 test_proc.wait(timeout=10)
206 test_proc.kill()
207 test_proc.wait()
208 logging.info('Test exitted with %d.', test_proc.returncode)
209 if test_proc.returncode == 0:
212 self.post_run(test_proc.returncode)
215 return test_proc.returncode