[Lldb-commits] [lldb] r223983 - Disable the remaining ProcessIO test on Windows.

Zachary Turner zturner at google.com
Wed Dec 10 15:25:28 PST 2014


Author: zturner
Date: Wed Dec 10 17:25:28 2014
New Revision: 223983

URL: http://llvm.org/viewvc/llvm-project?rev=223983&view=rev
Log:
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.

Modified:
    lldb/trunk/test/python_api/process/io/TestProcessIO.py

Modified: lldb/trunk/test/python_api/process/io/TestProcessIO.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/python_api/process/io/TestProcessIO.py?rev=223983&r1=223982&r2=223983&view=diff
==============================================================================
--- lldb/trunk/test/python_api/process/io/TestProcessIO.py (original)
+++ lldb/trunk/test/python_api/process/io/TestProcessIO.py Wed Dec 10 17:25:28 2014
@@ -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):





More information about the lldb-commits mailing list