Skip to content

Commit 0865a38

Browse files
committed
[lldb] Re-skip PipeTest on windows for now
The tests are flaky because the read/write calls return sooner than they should (and #128719 does not fix them). Skip them until we figure the best way to fix this.
1 parent 649f4dc commit 0865a38

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

lldb/unittests/Host/PipeTest.cpp

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,8 @@ TEST_F(PipeTest, OpenAsReader) {
5959
}
6060
#endif
6161

62+
// Tests flaky on Windows
63+
#ifndef _WIN32
6264
TEST_F(PipeTest, WriteWithTimeout) {
6365
Pipe pipe;
6466
ASSERT_THAT_ERROR(pipe.CreateNew(false).ToError(), llvm::Succeeded());
@@ -197,3 +199,4 @@ TEST_F(PipeTest, ReadWithTimeout) {
197199
llvm::HasValue(hello_world.size()));
198200
EXPECT_EQ(llvm::StringRef(buf, hello_world.size()), hello_world);
199201
}
202+
#endif /*ifndef _WIN32*/

0 commit comments

Comments
 (0)