[llvm-branch-commits] [lldb] a89242d - [lldb] Skip TestPlatformProcessConnect on windows and darwin

Pavel Labath via llvm-branch-commits llvm-branch-commits at lists.llvm.org
Sun Jan 17 11:24:14 PST 2021


Author: Pavel Labath
Date: 2021-01-17T20:18:55+01:00
New Revision: a89242d874df72cddeafbebc75ac377371e72796

URL: https://github.com/llvm/llvm-project/commit/a89242d874df72cddeafbebc75ac377371e72796
DIFF: https://github.com/llvm/llvm-project/commit/a89242d874df72cddeafbebc75ac377371e72796.diff

LOG: [lldb] Skip TestPlatformProcessConnect on windows and darwin

The test fails (for different reasons) on these platforms. Skip for now.

Added: 
    

Modified: 
    lldb/test/API/tools/lldb-server/platform-process-connect/TestPlatformProcessConnect.py

Removed: 
    


################################################################################
diff  --git a/lldb/test/API/tools/lldb-server/platform-process-connect/TestPlatformProcessConnect.py b/lldb/test/API/tools/lldb-server/platform-process-connect/TestPlatformProcessConnect.py
index 95a210059b6d..8ddab260b494 100644
--- a/lldb/test/API/tools/lldb-server/platform-process-connect/TestPlatformProcessConnect.py
+++ b/lldb/test/API/tools/lldb-server/platform-process-connect/TestPlatformProcessConnect.py
@@ -10,6 +10,8 @@ class TestPlatformProcessConnect(gdbremote_testcase.GdbRemoteTestCaseBase):
 
     @skipIfRemote
     @expectedFailureAll(hostoslist=["windows"], triple='.*-android')
+    @skipIfWindows # lldb-server does not terminate correctly
+    @skipIfDarwin # lldb-server not found correctly
     def test_platform_process_connect(self):
         self.build()
 


        


More information about the llvm-branch-commits mailing list