From: Russ Cox Date: Thu, 25 Sep 2014 18:14:11 +0000 (-0400) Subject: [release-branch.go1.3] net/http/httptest: disable TestIssue7264 X-Git-Tag: go1.3.2~4 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=a3bfff1fbd67a91c1397abf5ec0332ac636c5360;p=gostls13.git [release-branch.go1.3] net/http/httptest: disable TestIssue7264 This fails on my OS X machine, just like it did in default branch. In the default branch we removed the test. It's just buggy. LGTM=bradfitz R=bradfitz CC=golang-codereviews https://golang.org/cl/144610043 --- diff --git a/src/pkg/net/http/httptest/server_test.go b/src/pkg/net/http/httptest/server_test.go index 501cc8a999..4fc4c70208 100644 --- a/src/pkg/net/http/httptest/server_test.go +++ b/src/pkg/net/http/httptest/server_test.go @@ -30,6 +30,7 @@ func TestServer(t *testing.T) { } func TestIssue7264(t *testing.T) { + t.Skip("broken test - removed at tip") for i := 0; i < 1000; i++ { func() { inHandler := make(chan bool, 1)