mirror of
https://github.com/golang/go
synced 2024-11-14 07:40:21 -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:
parent
08a1631cda
commit
83f59d0a4f
@ -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",
|
||||||
|
Loading…
Reference in New Issue
Block a user