diff options
author | Michał Górny <mgorny@moritz.systems> | 2022-08-19 16:22:55 +0200 |
---|---|---|
committer | Michał Górny <mgorny@moritz.systems> | 2022-08-20 08:32:55 +0200 |
commit | d92f49fc4b22a738bd39e4588543b0a23037bd69 (patch) | |
tree | 44f6b905330e53a4c436947ba1810741b2677ded | |
parent | e565e2fa5c8ad898b1f5f120881a987f3657ce52 (diff) | |
download | llvm-d92f49fc4b22a738bd39e4588543b0a23037bd69.zip llvm-d92f49fc4b22a738bd39e4588543b0a23037bd69.tar.gz llvm-d92f49fc4b22a738bd39e4588543b0a23037bd69.tar.bz2 |
Reland "[lldb] [test] Disable new CommunicationTests on Windows"
This change was wrongly reverted and re-broke the Windows buildbot.
Sponsored by: The FreeBSD Foundation
-rw-r--r-- | lldb/unittests/Core/CommunicationTest.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/unittests/Core/CommunicationTest.cpp b/lldb/unittests/Core/CommunicationTest.cpp index 024684a..13ebfae 100644 --- a/lldb/unittests/Core/CommunicationTest.cpp +++ b/lldb/unittests/Core/CommunicationTest.cpp @@ -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; |