[Lldb-commits] [lldb] c6e8bf7 - [lldb/Test] Skip TestProcessConnect.py on Windows

Jonas Devlieghere via lldb-commits lldb-commits at lists.llvm.org
Tue Jul 14 14:08:30 PDT 2020


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:


        


More information about the lldb-commits mailing list