mirror of git://gcc.gnu.org/git/gcc.git
re PR go/56172 (net FAILs on Solaris)
PR go/56172 net: Skip TestMulticastListener on Solaris From Rainer Orth. From-SVN: r195855
This commit is contained in:
parent
702f9fe535
commit
aa62fd35b5
|
|
@ -47,7 +47,7 @@ var multicastListenerTests = []struct {
|
||||||
// listener with same address family, same group address and same port.
|
// listener with same address family, same group address and same port.
|
||||||
func TestMulticastListener(t *testing.T) {
|
func TestMulticastListener(t *testing.T) {
|
||||||
switch runtime.GOOS {
|
switch runtime.GOOS {
|
||||||
case "netbsd", "openbsd", "plan9", "windows":
|
case "netbsd", "openbsd", "plan9", "solaris", "windows":
|
||||||
t.Skipf("skipping test on %q", runtime.GOOS)
|
t.Skipf("skipping test on %q", runtime.GOOS)
|
||||||
case "linux":
|
case "linux":
|
||||||
if runtime.GOARCH == "arm" || runtime.GOARCH == "alpha" {
|
if runtime.GOARCH == "arm" || runtime.GOARCH == "alpha" {
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue