Commit 51d52f82 authored by Mikio Hara's avatar Mikio Hara

net: disable unixgram test on Plan 9 and Windows

Fixes build on Plan 9 and Windows.

R=golang-dev, minux.ma
CC=golang-dev
https://golang.org/cl/7454049
parent b767556d
......@@ -143,6 +143,10 @@ func TestConnAndPacketConn(t *testing.T) {
t.Fatalf("icmpMessage.Marshal failed: %v", err)
}
case "unixgram":
switch runtime.GOOS {
case "plan9", "windows":
continue
}
wb = []byte("UNIXGRAM PACKETCONN TEST")
default:
continue
......
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