From 2be9de7ea12022574038cf1f6efa2aec384075fc Mon Sep 17 00:00:00 2001 From: Nick Brown Date: Tue, 14 Mar 2023 16:06:42 -0700 Subject: [PATCH] Increase ICMP poll timeout on Fuchsia We are still seeing flakes in Fuchsia's CQ. Increase the poll timeout by a factor of 10. PiperOrigin-RevId: 516659576 --- test/syscalls/linux/udp_socket.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/syscalls/linux/udp_socket.cc b/test/syscalls/linux/udp_socket.cc index 32d9ed205..da8dafe53 100644 --- a/test/syscalls/linux/udp_socket.cc +++ b/test/syscalls/linux/udp_socket.cc @@ -56,7 +56,7 @@ namespace { size_t IcmpTimeoutMillis() { // Fuchsia's CI infra is susceptible to timing jumps. Set a long timeout // to avoid flakes. - return GvisorPlatform() == Platform::kFuchsia ? 10000 : 1000; + return GvisorPlatform() == Platform::kFuchsia ? 100000 : 1000; } // Fixture for tests parameterized by the address family to use (AF_INET and