aboutsummaryrefslogtreecommitdiff
path: root/lldb/unittests/Protocol/ProtocolMCPServerTest.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'lldb/unittests/Protocol/ProtocolMCPServerTest.cpp')
-rw-r--r--lldb/unittests/Protocol/ProtocolMCPServerTest.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/lldb/unittests/Protocol/ProtocolMCPServerTest.cpp b/lldb/unittests/Protocol/ProtocolMCPServerTest.cpp
index 9628cbd..45464db 100644
--- a/lldb/unittests/Protocol/ProtocolMCPServerTest.cpp
+++ b/lldb/unittests/Protocol/ProtocolMCPServerTest.cpp
@@ -38,6 +38,9 @@ using namespace lldb_private;
using namespace lldb_private::transport;
using namespace lldb_protocol::mcp;
+// Flakey, see https://github.com/llvm/llvm-project/issues/152677.
+#ifndef _WIN32
+
namespace {
template <typename T> Response make_response(T &&result, Id id = 1) {
@@ -325,3 +328,5 @@ TEST_F(ProtocolServerMCPTest, NotificationInitialized) {
EXPECT_THAT(logged_messages,
testing::Contains("MCP initialization complete"));
}
+
+#endif