aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Gerrand <adg@golang.org>2014-09-29 13:49:37 +1000
committerBrad Fitzpatrick <bradfitz@golang.org>2014-09-29 13:49:37 +1000
commit3fa6b988e0dfc910f3d42d8f12346cfdbb143a69 (patch)
treef575c2e59e06db85be6e2c24b14fd69572c3a8d9
parent370a9c9c0ec8abe2cdffcd7876086b3329f8b668 (diff)
downloadgo-3fa6b988e0dfc910f3d42d8f12346cfdbb143a69.tar.gz
go-3fa6b988e0dfc910f3d42d8f12346cfdbb143a69.zip
[release-branch.go1.3] net: temporarily skip TestAcceptIgnoreSomeErrors
««« CL 138120043 / 9a36c3ea7015 net: temporarily skip TestAcceptIgnoreSomeErrors Update #8662 LGTM=bradfitz R=golang-codereviews, bradfitz CC=golang-codereviews https://golang.org/cl/138120043 »»» LGTM=dsymonds R=dsymonds CC=golang-codereviews https://golang.org/cl/149200043
-rw-r--r--src/pkg/net/net_windows_test.go2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/pkg/net/net_windows_test.go b/src/pkg/net/net_windows_test.go
index 2f57745e3c..750a4304b2 100644
--- a/src/pkg/net/net_windows_test.go
+++ b/src/pkg/net/net_windows_test.go
@@ -16,6 +16,8 @@ import (
)
func TestAcceptIgnoreSomeErrors(t *testing.T) {
+ t.Skip("skipping temporarily, see issue 8662")
+
recv := func(ln Listener) (string, error) {
c, err := ln.Accept()
if err != nil {