We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9e6fa39 commit 1cf3346Copy full SHA for 1cf3346
lldb/unittests/Platform/Android/AdbClientTest.cpp
@@ -108,6 +108,9 @@ static uint16_t FindUnusedPort() {
108
return port;
109
}
110
111
+#ifndef _WIN32
112
+// This test is disabled on Windows due to platform-specific socket behavior
113
+// that causes assertion failures in TCPSocket::Listen()
114
TEST_F(AdbClientTest, RealTcpConnection) {
115
uint16_t unused_port = FindUnusedPort();
116
ASSERT_NE(unused_port, 0) << "Failed to find an unused port";
@@ -137,3 +140,4 @@ TEST_F(AdbClientTest, RealTcpConnection) {
137
140
<< "Connection should succeed when server is listening on port "
138
141
<< unused_port;
139
142
143
+#endif // _WIN32
0 commit comments