Commit b7360b9b authored by Ian Lance Taylor's avatar Ian Lance Taylor

net: disable multicast test on Alpha GNU/Linux

Alpha GNU/Linux does not have /proc/net/igmp[6].

R=golang-dev, rsc, bradfitz
CC=golang-dev
https://golang.org/cl/5663047
parent 82568c5c
......@@ -33,7 +33,7 @@ func TestListenMulticastUDP(t *testing.T) {
case "netbsd", "openbsd", "plan9", "windows":
return
case "linux":
if runtime.GOARCH == "arm" {
if runtime.GOARCH == "arm" || runtime.GOARCH == "alpha" {
return
}
}
......
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