diff options
author | Johnny Chen <johnny.chen@apple.com> | 2010-10-12 21:50:36 +0000 |
---|---|---|
committer | Johnny Chen <johnny.chen@apple.com> | 2010-10-12 21:50:36 +0000 |
commit | 370799c272dfccf51a80a16fda4663bcf004455c (patch) | |
tree | 284f62c7bfef339a796aad3d33456d8a5451b221 | |
parent | 10093aa5346093352c17b2f8fddab4e0fa1a3255 (diff) | |
download | bcm5719-llvm-370799c272dfccf51a80a16fda4663bcf004455c.tar.gz bcm5719-llvm-370799c272dfccf51a80a16fda4663bcf004455c.zip |
Fix an obvious cut-and-paste error.
llvm-svn: 116343
-rwxr-xr-x | lldb/test/dotest.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/test/dotest.py b/lldb/test/dotest.py index abebd9336b0..85948f2e1a5 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 != '<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") |