]> Cypherpunks repositories - gostls13.git/commitdiff
[release-branch.go1.3] net/http/httptest: disable TestIssue7264
authorRuss Cox <rsc@golang.org>
Thu, 25 Sep 2014 18:14:11 +0000 (14:14 -0400)
committerRuss Cox <rsc@golang.org>
Thu, 25 Sep 2014 18:14:11 +0000 (14:14 -0400)
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

src/pkg/net/http/httptest/server_test.go

index 501cc8a999562881be5fa81bd5e24857e418860f..4fc4c7020823f58b5ec4fbf3d2d8a663eeb599a4 100644 (file)
@@ -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)