From: Dmitri Shuralyov Date: Fri, 26 Jul 2024 16:49:29 +0000 (-0400) Subject: net: unskip TestUDPZeroBytePayload on Darwin X-Git-Tag: go1.24rc1~1390 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=d5976429812c5e3df0027cc44268cb624146904c;p=gostls13.git 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 --- 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") {