diff options
Diffstat (limited to 'lldb/test/python_api/process')
-rw-r--r-- | lldb/test/python_api/process/io/TestProcessIO.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/test/python_api/process/io/TestProcessIO.py b/lldb/test/python_api/process/io/TestProcessIO.py index 583e8b2b76b..a7c38b3852c 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): |