We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ba3c57f commit f95941dCopy full SHA for f95941d
src/net/http/httputil/reverseproxy_test.go
@@ -23,6 +23,7 @@ import (
23
"net/url"
24
"os"
25
"reflect"
26
+ "runtime"
27
"slices"
28
"strconv"
29
"strings"
@@ -1560,6 +1561,11 @@ func TestReverseProxyWebSocketHalfTCP(t *testing.T) {
1560
1561
// - that closing the write stream is propagated through the proxy and results in reading
1562
// EOF at the other end of the connection
1563
1564
+ switch runtime.GOOS {
1565
+ case "plan9":
1566
+ t.Skipf("not supported on %s", runtime.GOOS)
1567
+ }
1568
+
1569
mustRead := func(t *testing.T, conn *net.TCPConn, msg string) {
1570
b := make([]byte, len(msg))
1571
if _, err := conn.Read(b); err != nil {
0 commit comments