Commit 90812292 authored by Andrew Bonventre's avatar Andrew Bonventre

net: skip flaky TestLookupDotsWithRemoteSource on darwin

Updates golang/go#27992

Change-Id: Ic327df7cc5002a3d537f9117559c25f30e1eab9c
Reviewed-on: https://go-review.googlesource.com/c/151799
Run-TryBot: Andrew Bonventre <andybons@golang.org>
TryBot-Result: Gobot Gobot <gobot@golang.org>
Reviewed-by: default avatarBrad Fitzpatrick <bradfitz@golang.org>
parent 42e8b9c3
...@@ -618,6 +618,9 @@ func TestLookupDotsWithLocalSource(t *testing.T) { ...@@ -618,6 +618,9 @@ func TestLookupDotsWithLocalSource(t *testing.T) {
} }
func TestLookupDotsWithRemoteSource(t *testing.T) { func TestLookupDotsWithRemoteSource(t *testing.T) {
if runtime.GOOS == "darwin" {
testenv.SkipFlaky(t, 27992)
}
mustHaveExternalNetwork(t) mustHaveExternalNetwork(t)
if !supportsIPv4() || !*testIPv4 { if !supportsIPv4() || !*testIPv4 {
......
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