[Lldb-commits] [lldb] da6c7e6 - [lldb][mcp] Skip MCPUnixSocketCommandTestCase if remote (#146807)
via lldb-commits
lldb-commits at lists.llvm.org
Thu Jul 3 03:17:46 PDT 2025
Author: Alexandre Perez
Date: 2025-07-03T03:17:42-07:00
New Revision: da6c7e6dd2c2b650f87554f03e13c3e3e293b928
URL: https://github.com/llvm/llvm-project/commit/da6c7e6dd2c2b650f87554f03e13c3e3e293b928
DIFF: https://github.com/llvm/llvm-project/commit/da6c7e6dd2c2b650f87554f03e13c3e3e293b928.diff
LOG: [lldb][mcp] Skip MCPUnixSocketCommandTestCase if remote (#146807)
It looks like #146603 broke the
[lldb-remote-linux-win](https://lab.llvm.org/buildbot/#/builders/197)
build bot because `MCPUnixSocketCommandTestCase` is trying to start a
protocol-server via unix domain sockets on windows.
This change makes it so the test is skipped if it is remote.
Added:
Modified:
lldb/test/API/commands/protocol/TestMCPUnixSocket.py
Removed:
################################################################################
diff --git a/lldb/test/API/commands/protocol/TestMCPUnixSocket.py b/lldb/test/API/commands/protocol/TestMCPUnixSocket.py
index de0aec040695f..ea9255cc60ef5 100644
--- a/lldb/test/API/commands/protocol/TestMCPUnixSocket.py
+++ b/lldb/test/API/commands/protocol/TestMCPUnixSocket.py
@@ -12,6 +12,7 @@
class MCPUnixSocketCommandTestCase(TestBase):
@skipIfWindows
+ @skipIfRemote
@no_debug_info_test
def test_unix_socket(self):
"""
More information about the lldb-commits
mailing list