From: Mikio Hara Date: Tue, 9 Jun 2015 03:10:10 +0000 (+0900) Subject: net: disable dualstack listener tests on dragonfly X-Git-Tag: go1.5beta1~311 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=aff7a573d10cc544536a9e562e06984adebab548;p=gostls13.git net: disable dualstack listener tests on dragonfly Change-Id: Ia7914156e4369113dea7c17b3aa51096e25f1901 Reviewed-on: https://go-review.googlesource.com/10834 Reviewed-by: Ian Lance Taylor --- diff --git a/src/net/listen_test.go b/src/net/listen_test.go index 89d4d7e0de..d5627f2556 100644 --- a/src/net/listen_test.go +++ b/src/net/listen_test.go @@ -218,7 +218,7 @@ var dualStackTCPListenerTests = []struct { // listening address and same port. func TestDualStackTCPListener(t *testing.T) { 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) } if !supportsIPv4 || !supportsIPv6 { @@ -305,7 +305,7 @@ var dualStackUDPListenerTests = []struct { // listening address and same port. func TestDualStackUDPListener(t *testing.T) { 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) } if !supportsIPv4 || !supportsIPv6 {