Disable the remaining ProcessIO test on Windows.
authorZachary Turner <zturner@google.com>
Wed, 10 Dec 2014 23:25:28 +0000 (23:25 +0000)
committerZachary Turner <zturner@google.com>
Wed, 10 Dec 2014 23:25:28 +0000 (23:25 +0000)
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

lldb/test/python_api/process/io/TestProcessIO.py

index 583e8b2..a7c38b3 100644 (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):