Skip to content

Commit d597642

Browse files
dmitshurgopherbot
authored andcommitted
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 <[email protected]> Reviewed-by: Dmitri Shuralyov <[email protected]> LUCI-TryBot-Result: Go LUCI <[email protected]> Reviewed-by: Cherry Mui <[email protected]>
1 parent b6efbd4 commit d597642

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/net/udpsock_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -340,7 +340,7 @@ func TestUDPZeroBytePayload(t *testing.T) {
340340
switch runtime.GOOS {
341341
case "plan9":
342342
t.Skipf("not supported on %s", runtime.GOOS)
343-
case "darwin", "ios":
343+
case "ios":
344344
testenv.SkipFlaky(t, 29225)
345345
}
346346
if !testableNetwork("udp") {

0 commit comments

Comments
 (0)