aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAndrew Bonventre <andybons@golang.org>2018-11-29 18:41:03 -0500
committerAndrew Bonventre <andybons@golang.org>2018-11-30 19:03:45 +0000
commit90812292e25796f8411f625c062cfc2e2b4bdf5e (patch)
tree1d38bede12517ceb2e2bf3d681132a4ba06121b1 /src
parent42e8b9c3a430ccc4a03b2994f7dcbde630410e1e (diff)
downloadgo-90812292e25796f8411f625c062cfc2e2b4bdf5e.tar.xz
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: Brad Fitzpatrick <bradfitz@golang.org>
Diffstat (limited to 'src')
-rw-r--r--src/net/lookup_test.go3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/net/lookup_test.go b/src/net/lookup_test.go
index 35b2a635b2..1da0e49a28 100644
--- a/src/net/lookup_test.go
+++ b/src/net/lookup_test.go
@@ -618,6 +618,9 @@ func TestLookupDotsWithLocalSource(t *testing.T) {
}
func TestLookupDotsWithRemoteSource(t *testing.T) {
+ if runtime.GOOS == "darwin" {
+ testenv.SkipFlaky(t, 27992)
+ }
mustHaveExternalNetwork(t)
if !supportsIPv4() || !*testIPv4 {