]> Cypherpunks repositories - gostls13.git/commitdiff
net/http/cgi: disable TestCopyError to try to fix darwin/386 on builder
authorRuss Cox <rsc@golang.org>
Fri, 1 Mar 2013 17:00:24 +0000 (12:00 -0500)
committerRuss Cox <rsc@golang.org>
Fri, 1 Mar 2013 17:00:24 +0000 (12:00 -0500)
Update #4958.

R=golang-dev
CC=golang-dev
https://golang.org/cl/7434047

src/pkg/net/http/cgi/host_test.go

index 8c16e6897f27e15ef2557a909a373781dac341f3..2359fd9c278d04cde7919c52d267d8d94b87bf97 100644 (file)
@@ -301,6 +301,9 @@ func TestCopyError(t *testing.T) {
        if runtime.GOOS == "windows" {
                t.Skipf("skipping test on %q", runtime.GOOS)
        }
+       if runtime.GOOS == "darwin" {
+               t.Skipf("issue 4958 - skipping test on darwin")
+       }
        h := &Handler{
                Path: "testdata/test.cgi",
                Root: "/test.cgi",