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
diff --git a/src/pkg/net/multicast_test.go b/src/pkg/net/multicast_test.go
index bf0fe4d..f62580d 100644
--- a/src/pkg/net/multicast_test.go
+++ b/src/pkg/net/multicast_test.go
@@ -33,7 +33,7 @@
 	case "netbsd", "openbsd", "plan9", "windows":
 		return
 	case "linux":
-		if runtime.GOARCH == "arm" {
+		if runtime.GOARCH == "arm" || runtime.GOARCH == "alpha" {
 			return
 		}
 	}