From 370799c272dfccf51a80a16fda4663bcf004455c Mon Sep 17 00:00:00 2001 From: Johnny Chen Date: Tue, 12 Oct 2010 21:50:36 +0000 Subject: [PATCH] Fix an obvious cut-and-paste error. llvm-svn: 116343 --- lldb/test/dotest.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lldb/test/dotest.py b/lldb/test/dotest.py index abebd9336b06..85948f2e1a50 100755 --- a/lldb/test/dotest.py +++ b/lldb/test/dotest.py @@ -564,7 +564,7 @@ for ia in range(len(archs) if iterArchs else 1): new_stderr.close() new_stderr = open("%s.%s" % (old_stderr.name, configPostfix), "w") sys.stderr = new_stderr - if old_stdout.name != '' and config.get('split_stderr'): + if old_stdout.name != '' and config.get('split_stdout'): if new_stdout: new_stdout.close() new_stdout = open("%s.%s" % (old_stdout.name, configPostfix), "w")