Home | History | Annotate | Download | only in tools

Lines Matching refs:stdout

146     stdout from the compilation, and the compilation failed, then the test is
231 process = subprocess.Popen(cmdline, stdout=subprocess.PIPE,
266 def FailTest(resultfile, test, error, stdout=None, stderr=None):
273 stdout: The test's output to stdout.
278 if stdout and len(stdout) != 0:
279 resultfile.write('#error "%s stdout:"\n' % test['name'])
280 for line in stdout.split('\n'):
317 # Snap a copy of stdout and stderr into the test dictionary immediately
321 (stdout, stderr) = proc.communicate()
335 stdout, stderr)
341 stdout, stderr)
352 if (regexp.search(stdout) is not None or
360 stdout, stderr)
388 read_set.extend([test['proc'].stderr, test['proc'].stdout])