re PR go/56172 (net FAILs on Solaris)
authorIan Lance Taylor <ian@gcc.gnu.org>
Thu, 7 Feb 2013 17:04:24 +0000 (17:04 +0000)
committerIan Lance Taylor <ian@gcc.gnu.org>
Thu, 7 Feb 2013 17:04:24 +0000 (17:04 +0000)
PR go/56172
net: Skip TestMulticastListener on Solaris

From Rainer Orth.

From-SVN: r195855

libgo/go/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" {