From: Ian Lance Taylor Date: Thu, 7 Feb 2013 17:04:24 +0000 (+0000) Subject: re PR go/56172 (net FAILs on Solaris) X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=aa62fd35b56fbbe16fa7aa3176b5b6e4ff4c5c77;p=gcc.git re PR go/56172 (net FAILs on Solaris) PR go/56172 net: Skip TestMulticastListener on Solaris From Rainer Orth. From-SVN: r195855 --- diff --git a/libgo/go/net/multicast_posix_test.go b/libgo/go/net/multicast_posix_test.go index 5850a6be0f7..ff1edaf838c 100644 --- a/libgo/go/net/multicast_posix_test.go +++ b/libgo/go/net/multicast_posix_test.go @@ -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" {