aboutsummaryrefslogtreecommitdiff
path: root/lldb/unittests/Protocol/ProtocolMCPTest.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'lldb/unittests/Protocol/ProtocolMCPTest.cpp')
-rw-r--r--lldb/unittests/Protocol/ProtocolMCPTest.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/lldb/unittests/Protocol/ProtocolMCPTest.cpp b/lldb/unittests/Protocol/ProtocolMCPTest.cpp
index 396e361..5f7391e 100644
--- a/lldb/unittests/Protocol/ProtocolMCPTest.cpp
+++ b/lldb/unittests/Protocol/ProtocolMCPTest.cpp
@@ -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;
@@ -292,3 +295,5 @@ TEST(ProtocolMCPTest, ReadResourceResultEmpty) {
EXPECT_TRUE(deserialized_result->contents.empty());
}
+
+#endif