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

Jonas Devlieghere via lldb-commits lldb-commits at lists.llvm.org
Tue Jul 14 10:12:47 PDT 2020


Author: Jonas Devlieghere
Date: 2020-07-14T10:12:40-07:00
New Revision: f5f15acebbbab9c56c1a50c7f01834e067c8c3b2

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

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

Skip TestProcessConnect.py on Windows and Android (the same platforms as
TestPlatformProcessConnect.py) and mark it as a NO_DEBUG_INFO test so we
don't run all the variants.

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 34ae8d08004d..9aa21b6317f2 100644
--- a/lldb/test/API/functionalities/gdb_remote_client/TestProcessConnect.py
+++ b/lldb/test/API/functionalities/gdb_remote_client/TestProcessConnect.py
@@ -7,6 +7,10 @@
 
 
 class TestProcessConnect(GDBRemoteTestBase):
+
+    NO_DEBUG_INFO_TESTCASE = True
+
+    @expectedFailureAll(hostoslist=["windows"], triple='.*-android')
     def test_gdb_remote_sync(self):
         """Test the gdb-remote command in synchronous mode"""
         try:
@@ -16,6 +20,7 @@ def test_gdb_remote_sync(self):
         finally:
             self.dbg.GetSelectedPlatform().DisconnectRemote()
 
+    @expectedFailureAll(hostoslist=["windows"], triple='.*-android')
     def test_gdb_remote_async(self):
         """Test the gdb-remote command in asynchronous mode"""
         try:
@@ -28,6 +33,7 @@ def test_gdb_remote_async(self):
         finally:
             self.dbg.GetSelectedPlatform().DisconnectRemote()
 
+    @expectedFailureAll(hostoslist=["windows"], triple='.*-android')
     def test_process_connect_sync(self):
         """Test the gdb-remote command in synchronous mode"""
         try:
@@ -38,6 +44,7 @@ def test_process_connect_sync(self):
         finally:
             self.dbg.GetSelectedPlatform().DisconnectRemote()
 
+    @expectedFailureAll(hostoslist=["windows"], triple='.*-android')
     def test_process_connect_async(self):
         """Test the gdb-remote command in asynchronous mode"""
         try:


        


More information about the lldb-commits mailing list