Commit 1650ced9 authored by Brad Fitzpatrick's avatar Brad Fitzpatrick

net: skip failing or flaky TestInterfaces on freebsd-arm

Updates #15262

Change-Id: I3eb1f6f71d6285d039f11ba6a34b8a599a33bf49
Reviewed-on: https://go-review.googlesource.com/21909
Run-TryBot: Brad Fitzpatrick <bradfitz@golang.org>
Reviewed-by: default avatarMatthew Dempsky <mdempsky@google.com>
parent f6db855d
...@@ -5,6 +5,7 @@ ...@@ -5,6 +5,7 @@
package net package net
import ( import (
"internal/testenv"
"reflect" "reflect"
"runtime" "runtime"
"testing" "testing"
...@@ -56,6 +57,10 @@ type routeStats struct { ...@@ -56,6 +57,10 @@ type routeStats struct {
} }
func TestInterfaces(t *testing.T) { func TestInterfaces(t *testing.T) {
if runtime.GOOS == "freebsd" && runtime.GOARCH == "arm" {
// 100% flaky, actually, at least on some FreeBSD versions
testenv.SkipFlaky(t, 15262)
}
ift, err := Interfaces() ift, err := Interfaces()
if err != nil { if err != nil {
t.Fatal(err) 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