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

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:
Dmitriy Vyukov 2013-07-27 13:36:27 +04:00
parent c44e483542
commit 29f17fb01c

View File

@ -423,6 +423,8 @@ func testVariousDeadlines(t *testing.T, maxProcs int) {
switch runtime.GOOS {
case "plan9":
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))