Commit 83f59d0a authored by Russ Cox's avatar Russ Cox

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
parent 08a1631c
......@@ -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",
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment