[Lldb-commits] [lldb] [lldb-da] skip TestDAP_server on windows to unblock CI. (PR #128278)
via lldb-commits
lldb-commits at lists.llvm.org
Fri Feb 21 19:47:29 PST 2025
llvmbot wrote:
<!--LLVM PR SUMMARY COMMENT-->
@llvm/pr-subscribers-lldb
Author: John Harrison (ashgti)
<details>
<summary>Changes</summary>
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.
---
Full diff: https://github.com/llvm/llvm-project/pull/128278.diff
1 Files Affected:
- (modified) lldb/test/API/tools/lldb-dap/server/TestDAP_server.py (+1)
``````````diff
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.
``````````
</details>
https://github.com/llvm/llvm-project/pull/128278
More information about the lldb-commits
mailing list