[Lldb-commits] [lldb] r113879 - /lldb/trunk/test/lldbtest.py
Johnny Chen
johnny.chen at apple.com
Tue Sep 14 15:39:02 PDT 2010
Author: johnny
Date: Tue Sep 14 17:39:02 2010
New Revision: 113879
URL: http://llvm.org/viewvc/llvm-project?rev=113879&view=rev
Log:
More appropriate headings for the traceoutput: stdout & stderr.
Modified:
lldb/trunk/test/lldbtest.py
Modified: lldb/trunk/test/lldbtest.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/lldbtest.py?rev=113879&r1=113878&r2=113879&view=diff
==============================================================================
--- lldb/trunk/test/lldbtest.py (original)
+++ lldb/trunk/test/lldbtest.py Tue Sep 14 17:39:02 2010
@@ -238,9 +238,9 @@
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:
More information about the lldb-commits
mailing list