1
0
mirror of https://github.com/golang/go synced 2024-11-12 04:00:23 -07:00

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
This commit is contained in:
Ian Lance Taylor 2012-02-13 21:31:21 -08:00
parent 82568c5cd5
commit b7360b9b06

View File

@ -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
}
}