]> Cypherpunks repositories - gostls13.git/commitdiff
net: disable multicast test on Alpha GNU/Linux
authorIan Lance Taylor <iant@golang.org>
Tue, 14 Feb 2012 05:31:21 +0000 (21:31 -0800)
committerIan Lance Taylor <iant@golang.org>
Tue, 14 Feb 2012 05:31:21 +0000 (21:31 -0800)
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

index bf0fe4d8d0a20e28334836a3a7fae487bc8d7169..f62580de66e9e8e7259209e5d1df40caecdfcee9 100644 (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
                }
        }