mirror of https://github.com/golang/go.git
net: skip TestUDPZeroBytePayload on Darwin
Updates #29225 Change-Id: I4c9b7a108861ce5c9ab84f7324ced3da51e7bf2a Reviewed-on: https://go-review.googlesource.com/c/156119 Run-TryBot: Ian Lance Taylor <iant@golang.org> TryBot-Result: Gobot Gobot <gobot@golang.org> Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
This commit is contained in:
parent
5de0c37ecf
commit
0175064e69
|
|
@ -337,6 +337,8 @@ func TestUDPZeroBytePayload(t *testing.T) {
|
||||||
switch runtime.GOOS {
|
switch runtime.GOOS {
|
||||||
case "nacl", "plan9":
|
case "nacl", "plan9":
|
||||||
t.Skipf("not supported on %s", runtime.GOOS)
|
t.Skipf("not supported on %s", runtime.GOOS)
|
||||||
|
case "darwin":
|
||||||
|
testenv.SkipFlaky(t, 29225)
|
||||||
}
|
}
|
||||||
|
|
||||||
c, err := newLocalPacketListener("udp")
|
c, err := newLocalPacketListener("udp")
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue