From 76c7548162a42666f76359a4f5cb819624b86ae2 Mon Sep 17 00:00:00 2001 From: Russ Cox Date: Thu, 18 Sep 2014 14:48:26 -0400 Subject: [PATCH] net: disable TestDialMultiFDLeak It fails about 25% of the time on OS X. I don't know what it's trying to do. Created issue 8764 to correct this, but for now disable. LGTM=bradfitz, mikioh.mikioh R=bradfitz, mikioh.mikioh CC=golang-codereviews https://golang.org/cl/144070044 --- src/net/dial_test.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/net/dial_test.go b/src/net/dial_test.go index abeb500098..42898d669f 100644 --- a/src/net/dial_test.go +++ b/src/net/dial_test.go @@ -339,6 +339,8 @@ func numTCP() (ntcp, nopen, nclose int, err error) { } func TestDialMultiFDLeak(t *testing.T) { + t.Skip("flaky test - golang.org/issue/8764") + if !supportsIPv4 || !supportsIPv6 { t.Skip("neither ipv4 nor ipv6 is supported") } -- 2.50.0