tests: bump timeout to address flakiness

This test flakes on Linux in BuildKite -- see whether it's a timeout problem.

PiperOrigin-RevId: 506929923
This commit is contained in:
Kevin Krakauer
2023-02-03 10:03:59 -08:00
committed by gVisor bot
parent c6c2326fb8
commit 533d4435ff
+1 -1
View File
@@ -736,7 +736,7 @@ TEST_P(SocketInetLoopbackTest, TCPNonBlockingConnectClose) {
.events = POLLIN | POLLRDHUP,
};
// Use a large timeout to accomodate for retransmitted FINs.
constexpr int kTimeout = 30000;
constexpr int kTimeout = 120000;
int n = poll(&pfd, 1, kTimeout);
ASSERT_GE(n, 0) << strerror(errno);
ASSERT_EQ(n, 1);