Commit aff7a573 authored by Mikio Hara's avatar Mikio Hara

net: disable dualstack listener tests on dragonfly

Change-Id: Ia7914156e4369113dea7c17b3aa51096e25f1901
Reviewed-on: https://go-review.googlesource.com/10834Reviewed-by: 's avatarIan Lance Taylor <iant@golang.org>
parent 10425507
...@@ -218,7 +218,7 @@ var dualStackTCPListenerTests = []struct { ...@@ -218,7 +218,7 @@ var dualStackTCPListenerTests = []struct {
// listening address and same port. // listening address and same port.
func TestDualStackTCPListener(t *testing.T) { func TestDualStackTCPListener(t *testing.T) {
switch runtime.GOOS { switch runtime.GOOS {
case "nacl", "plan9": case "dragonfly", "nacl", "plan9": // re-enable on dragonfly once the new IP control block management has landed
t.Skipf("not supported on %s", runtime.GOOS) t.Skipf("not supported on %s", runtime.GOOS)
} }
if !supportsIPv4 || !supportsIPv6 { if !supportsIPv4 || !supportsIPv6 {
...@@ -305,7 +305,7 @@ var dualStackUDPListenerTests = []struct { ...@@ -305,7 +305,7 @@ var dualStackUDPListenerTests = []struct {
// listening address and same port. // listening address and same port.
func TestDualStackUDPListener(t *testing.T) { func TestDualStackUDPListener(t *testing.T) {
switch runtime.GOOS { switch runtime.GOOS {
case "nacl", "plan9": case "dragonfly", "nacl", "plan9": // re-enable on dragonfly once the new IP control block management has landed
t.Skipf("not supported on %s", runtime.GOOS) t.Skipf("not supported on %s", runtime.GOOS)
} }
if !supportsIPv4 || !supportsIPv6 { if !supportsIPv4 || !supportsIPv6 {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment