aboutsummaryrefslogtreecommitdiff
path: root/lldb/unittests/Host/MainLoopTest.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'lldb/unittests/Host/MainLoopTest.cpp')
-rw-r--r--lldb/unittests/Host/MainLoopTest.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/lldb/unittests/Host/MainLoopTest.cpp b/lldb/unittests/Host/MainLoopTest.cpp
index 448ad9c..0bc291c 100644
--- a/lldb/unittests/Host/MainLoopTest.cpp
+++ b/lldb/unittests/Host/MainLoopTest.cpp
@@ -80,6 +80,8 @@ TEST_F(MainLoopTest, ReadSocketObject) {
ASSERT_EQ(1u, callback_count);
}
+// Flakey, see https://github.com/llvm/llvm-project/issues/152677.
+#ifndef _WIN32
TEST_F(MainLoopTest, ReadPipeObject) {
Pipe pipe;
@@ -142,6 +144,7 @@ TEST_F(MainLoopTest, MultipleReadsPipeObject) {
ASSERT_EQ(5u, callback_count);
async_writer.wait();
}
+#endif
TEST_F(MainLoopTest, PipeDelayBetweenRegisterAndRun) {
Pipe pipe;