From: Russ Cox Date: Fri, 1 Mar 2013 17:00:24 +0000 (-0500) Subject: net/http/cgi: disable TestCopyError to try to fix darwin/386 on builder X-Git-Tag: go1.1rc2~741 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=83f59d0a4f5a52a1390e9eb6550532a0eddcd338;p=gostls13.git net/http/cgi: disable TestCopyError to try to fix darwin/386 on builder Update #4958. R=golang-dev CC=golang-dev https://golang.org/cl/7434047 --- diff --git a/src/pkg/net/http/cgi/host_test.go b/src/pkg/net/http/cgi/host_test.go index 8c16e6897f..2359fd9c27 100644 --- a/src/pkg/net/http/cgi/host_test.go +++ b/src/pkg/net/http/cgi/host_test.go @@ -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",