Commit eeb2211a authored by Alex Brainman's avatar Alex Brainman

net: skip new TestReadFromUDP on nacl and plan9 (fixes build)

TBR=0intro
R=golang-codereviews
CC=golang-codereviews
https://golang.org/cl/157820043
parent 3114bd6f
...@@ -36,6 +36,11 @@ func TestResolveUDPAddr(t *testing.T) { ...@@ -36,6 +36,11 @@ func TestResolveUDPAddr(t *testing.T) {
} }
func TestReadFromUDP(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") ra, err := ResolveUDPAddr("udp", "127.0.0.1:7")
if err != nil { if err != nil {
t.Fatal(err) t.Fatal(err)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment