From: Alex Brainman Date: Thu, 9 Oct 2014 22:46:41 +0000 (+1100) Subject: net: skip new TestReadFromUDP on nacl and plan9 (fixes build) X-Git-Tag: go1.4beta1~143 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=eeb2211a5b88ae0774fbfd5bccc1de329e7663f7;p=gostls13.git net: skip new TestReadFromUDP on nacl and plan9 (fixes build) TBR=0intro R=golang-codereviews CC=golang-codereviews https://golang.org/cl/157820043 --- diff --git a/src/net/udp_test.go b/src/net/udp_test.go index a102acf6c5..aa5751557f 100644 --- a/src/net/udp_test.go +++ b/src/net/udp_test.go @@ -36,6 +36,11 @@ func TestResolveUDPAddr(t *testing.T) { } func TestReadFromUDP(t *testing.T) { + switch runtime.GOOS { + case "nacl", "plan9": + t.Skipf("skipping test on %q", runtime.GOOS) + } + ra, err := ResolveUDPAddr("udp", "127.0.0.1:7") if err != nil { t.Fatal(err)