Author: Jonas Devlieghere
Date: 2020-07-14T14:07:06-07:00
New Revision: c6e8bf7287edddf74e1fe4005d6284667bae4542

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

LOG: [lldb/Test] Skip TestProcessConnect.py on Windows

Remote connections are not supported on Windows.

Added: 
    

Modified: 
    lldb/test/API/functionalities/gdb_remote_client/TestProcessConnect.py

Removed: 
    


################################################################################
diff  --git 
a/lldb/test/API/functionalities/gdb_remote_client/TestProcessConnect.py 
b/lldb/test/API/functionalities/gdb_remote_client/TestProcessConnect.py
index 9aa21b6317f2..e9e6b4e38ce1 100644
--- a/lldb/test/API/functionalities/gdb_remote_client/TestProcessConnect.py
+++ b/lldb/test/API/functionalities/gdb_remote_client/TestProcessConnect.py
@@ -10,7 +10,7 @@ class TestProcessConnect(GDBRemoteTestBase):
 
     NO_DEBUG_INFO_TESTCASE = True
 
-    @expectedFailureAll(hostoslist=["windows"], triple='.*-android')
+    @skipIfWindows
     def test_gdb_remote_sync(self):
         """Test the gdb-remote command in synchronous mode"""
         try:
@@ -20,7 +20,7 @@ def test_gdb_remote_sync(self):
         finally:
             self.dbg.GetSelectedPlatform().DisconnectRemote()
 
-    @expectedFailureAll(hostoslist=["windows"], triple='.*-android')
+    @skipIfWindows
     def test_gdb_remote_async(self):
         """Test the gdb-remote command in asynchronous mode"""
         try:
@@ -33,7 +33,7 @@ def test_gdb_remote_async(self):
         finally:
             self.dbg.GetSelectedPlatform().DisconnectRemote()
 
-    @expectedFailureAll(hostoslist=["windows"], triple='.*-android')
+    @skipIfWindows
     def test_process_connect_sync(self):
         """Test the gdb-remote command in synchronous mode"""
         try:
@@ -44,7 +44,7 @@ def test_process_connect_sync(self):
         finally:
             self.dbg.GetSelectedPlatform().DisconnectRemote()
 
-    @expectedFailureAll(hostoslist=["windows"], triple='.*-android')
+    @skipIfWindows
     def test_process_connect_async(self):
         """Test the gdb-remote command in asynchronous mode"""
         try:


        
_______________________________________________
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits

Reply via email to