More appropriate headings for the traceoutput: stdout & stderr.

llvm-svn: 113879
This commit is contained in:
Johnny Chen 2010-09-14 22:39:02 +00:00
parent c07b2afe5e
commit e049051e68
1 changed files with 3 additions and 3 deletions

View File

@ -238,9 +238,9 @@ def system(*popenargs, **kwargs):
args = list(popenargs)
print >> sys.stderr
print >> sys.stderr, "os command:", args
print >> sys.stderr, "output:", output
print >> sys.stderr, "error (from os comand):", error
print >> sys.stderr, "retcode (from os command):", retcode
print >> sys.stderr, "stdout:", output
print >> sys.stderr, "stderr:", error
print >> sys.stderr, "retcode:", retcode
print >> sys.stderr
if retcode: