mirror of https://github.com/golang/go.git
net: temporary skip hanging test on windows
Update #5971. R=alex.brainman CC=golang-dev https://golang.org/cl/11938046
This commit is contained in:
parent
c44e483542
commit
29f17fb01c
|
|
@ -423,6 +423,8 @@ func testVariousDeadlines(t *testing.T, maxProcs int) {
|
||||||
switch runtime.GOOS {
|
switch runtime.GOOS {
|
||||||
case "plan9":
|
case "plan9":
|
||||||
t.Skipf("skipping test on %q", runtime.GOOS)
|
t.Skipf("skipping test on %q", runtime.GOOS)
|
||||||
|
case "windows":
|
||||||
|
t.Skipf("skipping test on %q, see issue 5971", runtime.GOOS)
|
||||||
}
|
}
|
||||||
|
|
||||||
defer runtime.GOMAXPROCS(runtime.GOMAXPROCS(maxProcs))
|
defer runtime.GOMAXPROCS(runtime.GOMAXPROCS(maxProcs))
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue