aboutsummaryrefslogtreecommitdiff
path: root/src/net/http
diff options
context:
space:
mode:
Diffstat (limited to 'src/net/http')
-rw-r--r--src/net/http/httputil/reverseproxy_test.go4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/net/http/httputil/reverseproxy_test.go b/src/net/http/httputil/reverseproxy_test.go
index 539c5e81cf..54d2126aec 100644
--- a/src/net/http/httputil/reverseproxy_test.go
+++ b/src/net/http/httputil/reverseproxy_test.go
@@ -12,6 +12,7 @@ import (
"net/http"
"net/http/httptest"
"net/url"
+ "runtime"
"strings"
"testing"
"time"
@@ -214,6 +215,9 @@ func TestReverseProxyFlushInterval(t *testing.T) {
}
func TestReverseProxyCancellation(t *testing.T) {
+ if runtime.GOOS == "plan9" {
+ t.Skip("skipping test; see http://golang.org/issue/9554")
+ }
const backendResponse = "I am the backend"
reqInFlight := make(chan struct{})