Skip to content

Commit 69235d2

Browse files
committed
[lldb][test] Disable some pipe tests on Windows
These are timing out often on our Windows on Arm bot. See #152677.
1 parent 95b16d1 commit 69235d2

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

lldb/unittests/Host/MainLoopTest.cpp

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,8 @@ TEST_F(MainLoopTest, ReadSocketObject) {
8080
ASSERT_EQ(1u, callback_count);
8181
}
8282

83+
// Flakey, see https://github.com/llvm/llvm-project/issues/152677.
84+
#ifndef _WIN32
8385
TEST_F(MainLoopTest, ReadPipeObject) {
8486
Pipe pipe;
8587

@@ -142,6 +144,7 @@ TEST_F(MainLoopTest, MultipleReadsPipeObject) {
142144
ASSERT_EQ(5u, callback_count);
143145
async_writer.wait();
144146
}
147+
#endif
145148

146149
TEST_F(MainLoopTest, PipeDelayBetweenRegisterAndRun) {
147150
Pipe pipe;

0 commit comments

Comments
 (0)