]> Cypherpunks repositories - gostls13.git/commitdiff
net: skip TestMulticastListener on Solaris
authorIan Lance Taylor <iant@golang.org>
Thu, 7 Feb 2013 17:58:42 +0000 (09:58 -0800)
committerIan Lance Taylor <iant@golang.org>
Thu, 7 Feb 2013 17:58:42 +0000 (09:58 -0800)
R=golang-dev, minux.ma
CC=golang-dev
https://golang.org/cl/7308060

src/pkg/net/multicast_posix_test.go

index 5850a6be0f71e7d5ac4d5d65bffa8e47d663114b..ff1edaf838c30e10141c214932d33d14209241d0 100644 (file)
@@ -47,7 +47,7 @@ var multicastListenerTests = []struct {
 // listener with same address family, same group address and same port.
 func TestMulticastListener(t *testing.T) {
        switch runtime.GOOS {
-       case "netbsd", "openbsd", "plan9", "windows":
+       case "netbsd", "openbsd", "plan9", "solaris", "windows":
                t.Skipf("skipping test on %q", runtime.GOOS)
        case "linux":
                if runtime.GOARCH == "arm" || runtime.GOARCH == "alpha" {