1
0
mirror of https://github.com/golang/go synced 2024-11-26 18:26:48 -07:00

net: link skipped TestReadFromUDP to the issue

LGTM=minux
R=bradfitz, minux
CC=golang-codereviews
https://golang.org/cl/154220043
This commit is contained in:
Alex Brainman 2014-10-10 13:12:32 +11:00
parent 1fd042c9aa
commit c689abd56c

View File

@ -38,7 +38,7 @@ func TestResolveUDPAddr(t *testing.T) {
func TestReadFromUDP(t *testing.T) {
switch runtime.GOOS {
case "nacl", "plan9":
t.Skipf("skipping test on %q", runtime.GOOS)
t.Skipf("skipping test on %q, see issue 8916", runtime.GOOS)
}
ra, err := ResolveUDPAddr("udp", "127.0.0.1:7")