From 90847a85774a5c340266576f6b5a538f1fed7129 Mon Sep 17 00:00:00 2001 From: Dave Cheney Date: Fri, 18 Feb 2011 13:48:13 -0500 Subject: [PATCH] net: fix multicast tests R=rsc, mikioh, rsc1, dho CC=golang-dev https://golang.org/cl/4174056 --- src/pkg/net/multicast_test.go | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/pkg/net/multicast_test.go b/src/pkg/net/multicast_test.go index 06d430e90b..32fdec85bd 100644 --- a/src/pkg/net/multicast_test.go +++ b/src/pkg/net/multicast_test.go @@ -13,6 +13,7 @@ func TestMulticastJoinAndLeave(t *testing.T) { if runtime.GOOS == "windows" { return } + addr := &UDPAddr{ IP: IPv4zero, Port: 0, @@ -25,7 +26,7 @@ func TestMulticastJoinAndLeave(t *testing.T) { defer conn.Close() // try to join group - mcast := IPv4(224, 0, 0, 251) + mcast := IPv4(224, 0, 0, 254) err = conn.JoinGroup(mcast) if err != nil { t.Fatal(err) @@ -50,6 +51,7 @@ func TestJoinFailureWithIPv6Address(t *testing.T) { t.Fatal(err) } defer conn.Close() + // try to join group mcast := ParseIP("ff02::1") err = conn.JoinGroup(mcast) -- 2.50.0