[lldb] Disable the new Communication test on windows

The ConnectionFileDescriptor class on windows does not support
interruption (see the BytesAvailable method). Therefore this test makes
no sense there.
This commit is contained in:
Pavel Labath
2020-04-09 15:19:24 +02:00
parent a9406daaa6
commit 9aa5fbb3af

View File

@@ -14,6 +14,7 @@
using namespace lldb_private;
#ifndef _WIN32
TEST(CommunicationTest, SynchronizeWhileClosing) {
// Set up a communication object reading from a pipe.
Pipe pipe;
@@ -33,3 +34,4 @@ TEST(CommunicationTest, SynchronizeWhileClosing) {
ASSERT_TRUE(comm.StopReadThread());
}
#endif