]> Cypherpunks repositories - gostls13.git/commitdiff
net: temporary skip hanging test on windows
authorDmitriy Vyukov <dvyukov@google.com>
Sat, 27 Jul 2013 09:36:27 +0000 (13:36 +0400)
committerDmitriy Vyukov <dvyukov@google.com>
Sat, 27 Jul 2013 09:36:27 +0000 (13:36 +0400)
Update #5971.

R=alex.brainman
CC=golang-dev
https://golang.org/cl/11938046

src/pkg/net/timeout_test.go

index 2e92147b8e33e923390f92c9701a815d241b37dc..ac552c05187c88b6e8728286e96aa783993b7ee7 100644 (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))