diff options
author | Russ Cox <rsc@golang.org> | 2014-09-25 14:14:11 -0400 |
---|---|---|
committer | Russ Cox <rsc@golang.org> | 2014-09-25 14:14:11 -0400 |
commit | a13257e0284ddfb91b6622ef7829d4efb98f8770 (patch) | |
tree | 780681ed3a48831660e1808487a2fa354d473945 | |
parent | 13c82f498b7ce834fba496ffd5cb2d73b7001fc9 (diff) | |
download | go-a13257e0284ddfb91b6622ef7829d4efb98f8770.tar.gz |
[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://codereview.appspot.com/144610043
-rw-r--r-- | src/pkg/net/http/httptest/server_test.go | 1 |
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 501cc8a99..4fc4c7020 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) |