Skip to content

Commit 4e03bbb

Browse files
0introbradfitz
authored andcommitted
net/http/httputil: skip TestReverseProxyCancellation on Plan 9
Update #9554 Change-Id: I7de2a7d585d56b84ab975565042ed997e6124e08 Reviewed-on: https://go-review.googlesource.com/2613 Reviewed-by: Brad Fitzpatrick <[email protected]>
1 parent 0d4d582 commit 4e03bbb

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

src/net/http/httputil/reverseproxy_test.go

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ import (
1212
"net/http"
1313
"net/http/httptest"
1414
"net/url"
15+
"runtime"
1516
"strings"
1617
"testing"
1718
"time"
@@ -214,6 +215,9 @@ func TestReverseProxyFlushInterval(t *testing.T) {
214215
}
215216

216217
func TestReverseProxyCancellation(t *testing.T) {
218+
if runtime.GOOS == "plan9" {
219+
t.Skip("skipping test; see http://golang.org/issue/9554")
220+
}
217221
const backendResponse = "I am the backend"
218222

219223
reqInFlight := make(chan struct{})

0 commit comments

Comments
 (0)