Skip to content

Commit ec77196

Browse files
committed
ipv6: re-enable tests on Dragonfly
Now that golang.org/x/net was re-vendored into std, these tests should pass again. Updates golang/go#34368 Change-Id: I6f253896836fb18d46875a9420de58ca05a49646 Reviewed-on: https://go-review.googlesource.com/c/net/+/202457 Run-TryBot: Tobias Klauser <[email protected]> TryBot-Result: Gobot Gobot <[email protected]> Reviewed-by: Brad Fitzpatrick <[email protected]>
1 parent 24d2ffb commit ec77196

File tree

1 file changed

+0
-8
lines changed

1 file changed

+0
-8
lines changed

ipv6/multicastlistener_test.go

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,6 @@ func TestUDPSinglePacketConnWithMultipleGroupListeners(t *testing.T) {
2323
switch runtime.GOOS {
2424
case "fuchsia", "hurd", "js", "nacl", "plan9", "windows":
2525
t.Skipf("not supported on %s", runtime.GOOS)
26-
case "dragonfly":
27-
t.Skipf("skipping on %s until CL 202317 is vendored into std; see golang.org/issue/34368", runtime.GOOS)
2826
}
2927
if !nettest.SupportsIPv6() {
3028
t.Skip("ipv6 is not supported")
@@ -65,8 +63,6 @@ func TestUDPMultiplePacketConnWithMultipleGroupListeners(t *testing.T) {
6563
switch runtime.GOOS {
6664
case "fuchsia", "hurd", "js", "nacl", "plan9", "windows":
6765
t.Skipf("not supported on %s", runtime.GOOS)
68-
case "dragonfly":
69-
t.Skipf("skipping on %s until CL 202317 is vendored into std; see golang.org/issue/34368", runtime.GOOS)
7066
}
7167
if !nettest.SupportsIPv6() {
7268
t.Skip("ipv6 is not supported")
@@ -122,8 +118,6 @@ func TestUDPPerInterfaceSinglePacketConnWithSingleGroupListener(t *testing.T) {
122118
switch runtime.GOOS {
123119
case "fuchsia", "hurd", "js", "nacl", "plan9", "windows":
124120
t.Skipf("not supported on %s", runtime.GOOS)
125-
case "dragonfly":
126-
t.Skipf("skipping on %s until CL 202317 is vendored into std; see golang.org/issue/34368", runtime.GOOS)
127121
}
128122
if !nettest.SupportsIPv6() {
129123
t.Skip("ipv6 is not supported")
@@ -180,8 +174,6 @@ func TestIPSinglePacketConnWithSingleGroupListener(t *testing.T) {
180174
switch runtime.GOOS {
181175
case "fuchsia", "hurd", "js", "nacl", "plan9", "windows":
182176
t.Skipf("not supported on %s", runtime.GOOS)
183-
case "dragonfly":
184-
t.Skipf("skipping on %s until CL 202317 is vendored into std; see golang.org/issue/34368", runtime.GOOS)
185177
}
186178
if !nettest.SupportsIPv6() {
187179
t.Skip("ipv6 is not supported")

0 commit comments

Comments
 (0)