[Lldb-commits] [lldb] r371583 - Ah, only skip this for embedded darwin targets.

Jason Molenda via lldb-commits lldb-commits at lists.llvm.org
Tue Sep 10 18:03:24 PDT 2019


Author: jmolenda
Date: Tue Sep 10 18:03:24 2019
New Revision: 371583

URL: http://llvm.org/viewvc/llvm-project?rev=371583&view=rev
Log:
Ah, only skip this for embedded darwin targets.

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

Modified: lldb/trunk/packages/Python/lldbsuite/test/python_api/process/io/TestProcessIO.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/python_api/process/io/TestProcessIO.py?rev=371583&r1=371582&r2=371583&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/python_api/process/io/TestProcessIO.py (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/python_api/process/io/TestProcessIO.py Tue Sep 10 18:03:24 2019
@@ -36,7 +36,7 @@ class ProcessIOTestCase(TestBase):
     @skipIfWindows  # stdio manipulation unsupported on Windows
     @add_test_categories(['pyapi'])
     @expectedFlakeyLinux(bugnumber="llvm.org/pr26437")
-    @skipIfRemote # I/O redirection like this is not supported on remote iOS devices yet <rdar://problem/54581135>
+    @skipIfDarwinEmbedded # I/O redirection like this is not supported on remote iOS devices yet <rdar://problem/54581135>
     def test_stdin_by_api(self):
         """Exercise SBProcess.PutSTDIN()."""
         self.setup_test()




More information about the lldb-commits mailing list