Commit 4734464a authored by Russ Cox's avatar Russ Cox

net: disable failing interface tests on dragonfly

(Issue #10041.)

Change-Id: Ia894ab60ac6b09926c684f99aacca79275cbced4
Reviewed-on: https://go-review.googlesource.com/6365Reviewed-by: default avatarRuss Cox <rsc@golang.org>
parent 894024f4
......@@ -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)
......
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