[Lldb-commits] [lldb] [lldb-da] skip TestDAP_server on windows to unblock CI. (PR #128278)
John Harrison via lldb-commits
lldb-commits at lists.llvm.org
Fri Feb 21 19:44:45 PST 2025
https://github.com/ashgti created https://github.com/llvm/llvm-project/pull/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.
>From 0598331ccb52807020c2c1fc2f1ada1f02fe0952 Mon Sep 17 00:00:00 2001
From: John Harrison <harjohn at google.com>
Date: Fri, 21 Feb 2025 19:42:10 -0800
Subject: [PATCH] [lldb-da] skip TestDAP_server on windows to unblock CI.
---
lldb/test/API/tools/lldb-dap/server/TestDAP_server.py | 1 +
1 file changed, 1 insertion(+)
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