Home | History | Annotate | Download | only in tools

Lines Matching refs:stderr

145     compiler.  If any one of the listed patterns matches either the stderr or
232 stderr=subprocess.PIPE)
266 def FailTest(resultfile, test, error, stdout=None, stderr=None):
274 stderr: The test's output to stderr.
283 if stderr and len(stderr) != 0:
284 resultfile.write('#error "%s stderr:"\n' % test['name'])
285 for line in stderr.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)
353 regexp.search(stderr) is not None):
360 stdout, stderr)
388 read_set.extend([test['proc'].stderr, test['proc'].stdout])