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
This commit is contained in:
Nick Brown
2023-03-14 16:10:08 -07:00
committed by gVisor bot
parent 6f76978048
commit 2be9de7ea1
+1 -1
View File
@@ -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