Disable the remaining ProcessIO test on Windows.

This still relies on PutSTDIN, just indirectly.  So it was hanging
due to not being able to get stdin from the test.

llvm-svn: 223983
This commit is contained in:
Zachary Turner 2014-12-10 23:25:28 +00:00
parent fb6c3494e7
commit 29278a6ac4
1 changed files with 1 additions and 1 deletions

View File

@ -82,7 +82,7 @@ class ProcessIOTestCase(TestBase):
self.buildDsym()
self.do_stdout_stderr_redirection()
# This one actually should work on Windows, since it doesn't call GetSTDOUT, GetSTDERR, or PutSTDIN.
@unittest2.skipIf(sys.platform.startswith("win32"), "stdio manipulation unsupported on Windows")
@python_api_test
@dwarf_test
def test_stdout_stderr_redirection_with_dwarf(self):