aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRuss Cox <rsc@golang.org>2014-09-25 14:14:11 -0400
committerRuss Cox <rsc@golang.org>2014-09-25 14:14:11 -0400
commita3bfff1fbd67a91c1397abf5ec0332ac636c5360 (patch)
tree108b6c9448da04b3408abc0be14973c130f85ea5
parent881f0d1e9e0618cb71987d68e15ab1cedbd31c70 (diff)
downloadgo-a3bfff1fbd67a91c1397abf5ec0332ac636c5360.tar.gz
go-a3bfff1fbd67a91c1397abf5ec0332ac636c5360.zip
[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
-rw-r--r--src/pkg/net/http/httptest/server_test.go1
1 files changed, 1 insertions, 0 deletions
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)