forked from OSchip/llvm-project
More appropriate headings for the traceoutput: stdout & stderr.
llvm-svn: 113879
This commit is contained in:
parent
c07b2afe5e
commit
e049051e68
|
@ -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:
|
||||
|
|
Loading…
Reference in New Issue