From 533d4435ff215cc06324ea0c229cf52df85fd1e8 Mon Sep 17 00:00:00 2001 From: Kevin Krakauer Date: Fri, 3 Feb 2023 10:01:36 -0800 Subject: [PATCH] tests: bump timeout to address flakiness This test flakes on Linux in BuildKite -- see whether it's a timeout problem. PiperOrigin-RevId: 506929923 --- test/syscalls/linux/socket_inet_loopback.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/syscalls/linux/socket_inet_loopback.cc b/test/syscalls/linux/socket_inet_loopback.cc index d2a0b8126..b81e8148a 100644 --- a/test/syscalls/linux/socket_inet_loopback.cc +++ b/test/syscalls/linux/socket_inet_loopback.cc @@ -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);