From b7360b9b066e38a42157f56fee174ad21be1dff2 Mon Sep 17 00:00:00 2001 From: Ian Lance Taylor Date: Mon, 13 Feb 2012 21:31:21 -0800 Subject: [PATCH] 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 --- src/pkg/net/multicast_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pkg/net/multicast_test.go b/src/pkg/net/multicast_test.go index bf0fe4d8d0..f62580de66 100644 --- a/src/pkg/net/multicast_test.go +++ b/src/pkg/net/multicast_test.go @@ -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 } } -- 2.50.0