aboutsummaryrefslogtreecommitdiff
path: root/src/net/http/httputil/reverseproxy_test.go
diff options
context:
space:
mode:
authorBrad Fitzpatrick <bradfitz@golang.org>2015-10-16 16:28:42 +0000
committerBrad Fitzpatrick <bradfitz@golang.org>2015-10-16 19:16:56 +0000
commit368f73bcd9651129c1753c3486cf5b0757d4707d (patch)
tree3b66a5bd443f294cf2d209c37502139e51ca87bc /src/net/http/httputil/reverseproxy_test.go
parent7d86d5744484bd3297acb7c4a71fadd5670e5f82 (diff)
downloadgo-368f73bcd9651129c1753c3486cf5b0757d4707d.tar.gz
go-368f73bcd9651129c1753c3486cf5b0757d4707d.zip
net: unblock plan9 TCP Read calls after socket close
Fixes #7782 Fixes #9554 Updates #7237 (original metabug, before we switched to specific bugs) Updates #11932 (plan9 still doesn't have net I/O deadline support) Change-Id: I96f311b88b1501d884ebc008fd31ad2cf1e16d75 Reviewed-on: https://go-review.googlesource.com/15941 Reviewed-by: Ian Lance Taylor <iant@golang.org> Reviewed-by: David du Colombier <0intro@gmail.com> Run-TryBot: Brad Fitzpatrick <bradfitz@golang.org> TryBot-Result: Gobot Gobot <gobot@golang.org>
Diffstat (limited to 'src/net/http/httputil/reverseproxy_test.go')
-rw-r--r--src/net/http/httputil/reverseproxy_test.go4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/net/http/httputil/reverseproxy_test.go b/src/net/http/httputil/reverseproxy_test.go
index 14897f4118..1d309614e2 100644
--- a/src/net/http/httputil/reverseproxy_test.go
+++ b/src/net/http/httputil/reverseproxy_test.go
@@ -14,7 +14,6 @@ import (
"net/http/httptest"
"net/url"
"reflect"
- "runtime"
"strings"
"testing"
"time"
@@ -226,9 +225,6 @@ func TestReverseProxyFlushInterval(t *testing.T) {
}
func TestReverseProxyCancelation(t *testing.T) {
- if runtime.GOOS == "plan9" {
- t.Skip("skipping test; see https://golang.org/issue/9554")
- }
const backendResponse = "I am the backend"
reqInFlight := make(chan struct{})