[Lldb-commits] [lldb] 664cbd1 - [lldb-dap] skip TestDAP_server on windows to unblock CI. (#128278)

via lldb-commits lldb-commits at lists.llvm.org
Mon Feb 24 09:45:56 PST 2025


Author: John Harrison
Date: 2025-02-24T09:45:51-08:00
New Revision: 664cbd1b5db190724ceea498d1f520eb66d78d69

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

LOG: [lldb-dap] skip TestDAP_server on windows to unblock CI. (#128278)

This should fix the tests running on windows.

https://lab.llvm.org/buildbot/#/builders/141/builds/6506 is the failure,
the error message does not clearly indicate why the connection failed,
but they are passing for me locally on macOS and passed on linux in the
CI.

Added: 
    

Modified: 
    lldb/test/API/tools/lldb-dap/server/TestDAP_server.py

Removed: 
    


################################################################################
diff  --git a/lldb/test/API/tools/lldb-dap/server/TestDAP_server.py b/lldb/test/API/tools/lldb-dap/server/TestDAP_server.py
index e78fdceed1bbd..1f562e989533a 100644
--- a/lldb/test/API/tools/lldb-dap/server/TestDAP_server.py
+++ b/lldb/test/API/tools/lldb-dap/server/TestDAP_server.py
@@ -48,6 +48,7 @@ def run_debug_session(self, connection, name):
         self.assertEqual(output, f"Hello {name}!\r\n")
         self.dap_server.request_disconnect()
 
+    @skipIfWindows
     def test_server_port(self):
         """
         Test launching a binary with a lldb-dap in server mode on a specific port.


        


More information about the lldb-commits mailing list