From: Russ Cox Date: Sun, 1 Mar 2015 00:17:27 +0000 (-0500) Subject: net: disable failing interface tests on dragonfly X-Git-Tag: go1.5beta1~1810 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=4734464a140b997fd85b636a66bfa6cd1079e0a1;p=gostls13.git net: disable failing interface tests on dragonfly (Issue #10041.) Change-Id: Ia894ab60ac6b09926c684f99aacca79275cbced4 Reviewed-on: https://go-review.googlesource.com/6365 Reviewed-by: Russ Cox --- diff --git a/src/net/interface_test.go b/src/net/interface_test.go index 15c0cd7be4..98d6734dc3 100644 --- a/src/net/interface_test.go +++ b/src/net/interface_test.go @@ -48,6 +48,9 @@ func ipv6LinkLocalUnicastAddr(ifi *Interface) string { } func TestInterfaces(t *testing.T) { + if runtime.GOOS == "dragonfly" { + t.Skip("fail on dragonfly - issue 10041") + } ift, err := Interfaces() if err != nil { t.Fatal(err) @@ -105,6 +108,9 @@ func TestInterfaces(t *testing.T) { } func TestInterfaceAddrs(t *testing.T) { + if runtime.GOOS == "dragonfly" { + t.Skip("fail on dragonfly - issue 10041") + } ift, err := Interfaces() if err != nil { t.Fatal(err)