Commit 29f17fb0 authored by Dmitriy Vyukov's avatar Dmitriy Vyukov

net: temporary skip hanging test on windows

Update #5971.

R=alex.brainman
CC=golang-dev
https://golang.org/cl/11938046
parent c44e4835
......@@ -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))
......
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