llvmbot wrote:

<!--LLVM PR SUMMARY COMMENT-->

@llvm/pr-subscribers-lldb

Author: Alexandre Perez (aperez)

<details>
<summary>Changes</summary>

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.

---
Full diff: https://github.com/llvm/llvm-project/pull/146807.diff


1 Files Affected:

- (modified) lldb/test/API/commands/protocol/TestMCPUnixSocket.py (+1) 


``````````diff
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):
         """

``````````

</details>


https://github.com/llvm/llvm-project/pull/146807
_______________________________________________
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits

Reply via email to