mirror of
https://github.com/golang/go
synced 2024-11-22 04:34:39 -07:00
net: fix multicast tests
R=rsc, mikioh, rsc1, dho CC=golang-dev https://golang.org/cl/4174056
This commit is contained in:
parent
7e6488f9ad
commit
90847a8577
@ -13,6 +13,7 @@ func TestMulticastJoinAndLeave(t *testing.T) {
|
|||||||
if runtime.GOOS == "windows" {
|
if runtime.GOOS == "windows" {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
addr := &UDPAddr{
|
addr := &UDPAddr{
|
||||||
IP: IPv4zero,
|
IP: IPv4zero,
|
||||||
Port: 0,
|
Port: 0,
|
||||||
@ -25,7 +26,7 @@ func TestMulticastJoinAndLeave(t *testing.T) {
|
|||||||
defer conn.Close()
|
defer conn.Close()
|
||||||
|
|
||||||
// try to join group
|
// try to join group
|
||||||
mcast := IPv4(224, 0, 0, 251)
|
mcast := IPv4(224, 0, 0, 254)
|
||||||
err = conn.JoinGroup(mcast)
|
err = conn.JoinGroup(mcast)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
t.Fatal(err)
|
t.Fatal(err)
|
||||||
@ -50,6 +51,7 @@ func TestJoinFailureWithIPv6Address(t *testing.T) {
|
|||||||
t.Fatal(err)
|
t.Fatal(err)
|
||||||
}
|
}
|
||||||
defer conn.Close()
|
defer conn.Close()
|
||||||
|
|
||||||
// try to join group
|
// try to join group
|
||||||
mcast := ParseIP("ff02::1")
|
mcast := ParseIP("ff02::1")
|
||||||
err = conn.JoinGroup(mcast)
|
err = conn.JoinGroup(mcast)
|
||||||
|
Loading…
Reference in New Issue
Block a user