diff options
author | Ian Lance Taylor <ian@gcc.gnu.org> | 2013-02-07 17:04:24 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@gcc.gnu.org> | 2013-02-07 17:04:24 +0000 |
commit | aa62fd35b56fbbe16fa7aa3176b5b6e4ff4c5c77 (patch) | |
tree | 5f9b9e432c7c96f20bc12e088861af43df15b7ad /libgo/go/net | |
parent | 702f9fe53516f574c149d7638b977d84b2861e9b (diff) | |
download | gcc-aa62fd35b56fbbe16fa7aa3176b5b6e4ff4c5c77.zip gcc-aa62fd35b56fbbe16fa7aa3176b5b6e4ff4c5c77.tar.gz gcc-aa62fd35b56fbbe16fa7aa3176b5b6e4ff4c5c77.tar.bz2 |
re PR go/56172 (net FAILs on Solaris)
PR go/56172
net: Skip TestMulticastListener on Solaris
From Rainer Orth.
From-SVN: r195855
Diffstat (limited to 'libgo/go/net')
-rw-r--r-- | libgo/go/net/multicast_posix_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libgo/go/net/multicast_posix_test.go b/libgo/go/net/multicast_posix_test.go index 5850a6b..ff1edaf 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" { |