[Lldb-commits] [lldb] e786144 - [lldb] [test] Skip new signal tests on Windows

Michał Górny via lldb-commits lldb-commits at lists.llvm.org
Wed Nov 10 02:31:56 PST 2021


Author: Michał Górny
Date: 2021-11-10T11:31:21+01:00
New Revision: e7861449ea25ccad023054b42eba80dc340a5c83

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

LOG: [lldb] [test] Skip new signal tests on Windows

Added: 
    

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

Removed: 
    


################################################################################
diff  --git a/lldb/test/API/functionalities/gdb_remote_client/TestGDBRemoteClient.py b/lldb/test/API/functionalities/gdb_remote_client/TestGDBRemoteClient.py
index 1db3717637df..96544f158fe7 100644
--- a/lldb/test/API/functionalities/gdb_remote_client/TestGDBRemoteClient.py
+++ b/lldb/test/API/functionalities/gdb_remote_client/TestGDBRemoteClient.py
@@ -434,6 +434,7 @@ def cont(self):
         self.assertEqual(process.threads[0].GetStopDescription(100),
                          'signal SIGBUS')
 
+    @skipIfWindows
     def test_signal_lldb_old(self):
         class MyResponder(MockGDBServerResponder):
             def qSupported(self, client_supported):
@@ -461,6 +462,7 @@ def cont(self):
         self.assertEqual(process.threads[0].GetStopDescription(100),
                          'signal SIGUSR1')
 
+    @skipIfWindows
     def test_signal_lldb(self):
         class MyResponder(MockGDBServerResponder):
             def qSupported(self, client_supported):


        


More information about the lldb-commits mailing list