[lldb] [test] Disable new CommunicationTests on Windows

Sponsored by: The FreeBSD Foundation
This commit is contained in:
Michał Górny 2022-08-19 16:22:55 +02:00
parent 7614785e1d
commit d38985a36b
1 changed files with 1 additions and 1 deletions

View File

@ -21,6 +21,7 @@
using namespace lldb_private;
#ifndef _WIN32
static void CommunicationReadTest(bool use_read_thread) {
Pipe pipe;
ASSERT_THAT_ERROR(pipe.CreateNew(/*child_process_inherit=*/false).ToError(),
@ -87,7 +88,6 @@ TEST(CommunicationTest, ReadThread) {
CommunicationReadTest(/*use_thread=*/true);
}
#ifndef _WIN32
TEST(CommunicationTest, SynchronizeWhileClosing) {
// Set up a communication object reading from a pipe.
Pipe pipe;