]> Cypherpunks repositories - gostls13.git/commitdiff
net: disable dualstack listener tests on dragonfly
authorMikio Hara <mikioh.mikioh@gmail.com>
Tue, 9 Jun 2015 03:10:10 +0000 (12:10 +0900)
committerMikio Hara <mikioh.mikioh@gmail.com>
Tue, 9 Jun 2015 08:21:21 +0000 (08:21 +0000)
Change-Id: Ia7914156e4369113dea7c17b3aa51096e25f1901
Reviewed-on: https://go-review.googlesource.com/10834
Reviewed-by: Ian Lance Taylor <iant@golang.org>
src/net/listen_test.go

index 89d4d7e0de8f048fc9185bfd2a2c1d44c074bb2b..d5627f2556d03fe95267473e548ad83097f09337 100644 (file)
@@ -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 {