]> Cypherpunks repositories - gostls13.git/commitdiff
net: skip flaky TestLookupDotsWithRemoteSource on darwin
authorAndrew Bonventre <andybons@golang.org>
Thu, 29 Nov 2018 23:41:03 +0000 (18:41 -0500)
committerAndrew Bonventre <andybons@golang.org>
Fri, 30 Nov 2018 19:03:45 +0000 (19:03 +0000)
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>
src/net/lookup_test.go

index 35b2a635b2c95bd78c2f825f966fd0706ec65967..1da0e49a28c30bee72b86d1dad981ef64abb9403 100644 (file)
@@ -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 {