From: Zachary Turner Date: Wed, 10 Dec 2014 23:25:28 +0000 (+0000) Subject: Disable the remaining ProcessIO test on Windows. X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=29278a6ac43c268f419dc095cf7b38a6faacb3e4;p=platform%2Fupstream%2Fllvm.git 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 --- diff --git a/lldb/test/python_api/process/io/TestProcessIO.py b/lldb/test/python_api/process/io/TestProcessIO.py index 583e8b2..a7c38b3 100644 --- a/lldb/test/python_api/process/io/TestProcessIO.py +++ b/lldb/test/python_api/process/io/TestProcessIO.py @@ -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):