From d5976429812c5e3df0027cc44268cb624146904c Mon Sep 17 00:00:00 2001 From: Dmitri Shuralyov Date: Fri, 26 Jul 2024 12:49:29 -0400 Subject: [PATCH] net: unskip TestUDPZeroBytePayload on Darwin From information we have available in the issue, this test was flaky on OS X 10.10 but not newer. By now macOS 11 is the minimum required version, and 1000 local runs of the test passed, so try to unskip as the next step. For #29225. Change-Id: I18a24459f01e53ef9de05b50d1dd8786d0683107 Cq-Include-Trybots: luci.golang.try:gotip-darwin-amd64_11,gotip-darwin-amd64_14 Reviewed-on: https://go-review.googlesource.com/c/go/+/601395 Auto-Submit: Dmitri Shuralyov Reviewed-by: Dmitri Shuralyov LUCI-TryBot-Result: Go LUCI Reviewed-by: Cherry Mui --- src/net/udpsock_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/net/udpsock_test.go b/src/net/udpsock_test.go index 8a21aa7370..43065d06da 100644 --- a/src/net/udpsock_test.go +++ b/src/net/udpsock_test.go @@ -340,7 +340,7 @@ func TestUDPZeroBytePayload(t *testing.T) { switch runtime.GOOS { case "plan9": t.Skipf("not supported on %s", runtime.GOOS) - case "darwin", "ios": + case "ios": testenv.SkipFlaky(t, 29225) } if !testableNetwork("udp") { -- 2.48.1