1
0
mirror of https://github.com/golang/go synced 2024-11-13 17:30:24 -07:00

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
This commit is contained in:
Russ Cox 2013-03-01 12:00:24 -05:00
parent 08a1631cda
commit 83f59d0a4f

View File

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