Skip to content

Commit 8adab4f

Browse files
authored
Merge pull request #11242 from charles-zablit/charles-zablit/lldb/disable-protocol-test-windows
🍒 [lldb][windows] deactivate ProtocolMCPServerTest
2 parents 6aa67af + d1c1af6 commit 8adab4f

File tree

1 file changed

+10
-3
lines changed

1 file changed

+10
-3
lines changed
Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,13 @@
1-
add_lldb_unittest(ProtocolTests
1+
set(PROTOCOL_TEST_SOURCES
22
ProtocolMCPTest.cpp
3-
ProtocolMCPServerTest.cpp
3+
)
4+
5+
if(NOT WIN32)
6+
list(APPEND PROTOCOL_TEST_SOURCES ProtocolMCPServerTest.cpp)
7+
endif()
8+
9+
add_lldb_unittest(ProtocolTests
10+
${PROTOCOL_TEST_SOURCES}
411

512
LINK_LIBS
613
lldbCore
@@ -9,4 +16,4 @@ add_lldb_unittest(ProtocolTests
916
lldbPluginPlatformMacOSX
1017
lldbPluginProtocolServerMCP
1118
LLVMTestingSupport
12-
)
19+
)

0 commit comments

Comments
 (0)