[Lldb-commits] [lldb] r116343 - /lldb/trunk/test/dotest.py

Johnny Chen johnny.chen at apple.com
Tue Oct 12 14:50:36 PDT 2010


Author: johnny
Date: Tue Oct 12 16:50:36 2010
New Revision: 116343

URL: http://llvm.org/viewvc/llvm-project?rev=116343&view=rev
Log:
Fix an obvious cut-and-paste error.

Modified:
    lldb/trunk/test/dotest.py

Modified: lldb/trunk/test/dotest.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/dotest.py?rev=116343&r1=116342&r2=116343&view=diff
==============================================================================
--- lldb/trunk/test/dotest.py (original)
+++ lldb/trunk/test/dotest.py Tue Oct 12 16:50:36 2010
@@ -564,7 +564,7 @@
                         new_stderr.close()
                     new_stderr = open("%s.%s" % (old_stderr.name, configPostfix), "w")
                     sys.stderr = new_stderr
-                if old_stdout.name != '<stderr>' and config.get('split_stderr'):
+                if old_stdout.name != '<stdout>' and config.get('split_stdout'):
                     if new_stdout:
                         new_stdout.close()
                     new_stdout = open("%s.%s" % (old_stdout.name, configPostfix), "w")





More information about the lldb-commits mailing list