Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions lldb/unittests/Protocol/ProtocolMCPServerTest.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down Expand Up @@ -325,3 +328,5 @@ TEST_F(ProtocolServerMCPTest, NotificationInitialized) {
EXPECT_THAT(logged_messages,
testing::Contains("MCP initialization complete"));
}

#endif
5 changes: 5 additions & 0 deletions lldb/unittests/Protocol/ProtocolMCPTest.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,9 @@ using namespace lldb;
using namespace lldb_private;
using namespace lldb_protocol::mcp;

// Flakey, see https://github.com/llvm/llvm-project/issues/152677.
#ifndef _WIN32

TEST(ProtocolMCPTest, Request) {
Request request;
request.id = 1;
Expand Down Expand Up @@ -292,3 +295,5 @@ TEST(ProtocolMCPTest, ReadResourceResultEmpty) {

EXPECT_TRUE(deserialized_result->contents.empty());
}

#endif
Loading