Attention needed from Ethan Lee and Richard Miller
Nicholas Husin has uploaded the change for review![Open in Gerrit]()
Nicholas Husin would like Richard Miller and Ethan Lee to review this change.
Commit message
internal/http3: skip TestNetHTTPIntegration on plan9
TestNetHTTPIntegration relies on ReadMsgUDP which is currently
unimplemented in plan9.
For golang/go#78223
Change-Id: I958f5f1324236e540a9c8cdf4f2b3c805f023732
Change diff
diff --git a/internal/http3/nethttp_test.go b/internal/http3/nethttp_test.go
index 5ae8a0d..fa4cbb5 100644
--- a/internal/http3/nethttp_test.go
+++ b/internal/http3/nethttp_test.go
@@ -10,6 +10,7 @@
"crypto/tls"
"io"
"net/http"
+ "runtime"
"slices"
"testing"
"time"
@@ -40,6 +41,10 @@
}
func TestNetHTTPIntegration(t *testing.T) {
+ if runtime.GOOS == "plan9" {
+ t.Skip("ReadMsgUDP not supported on plan9")
+ }
+
body := []byte("some body")
handler := http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
w.Write(body)
Change information
Files:
- M internal/http3/nethttp_test.go
Change size: XS
Delta: 1 file changed, 5 insertions(+), 0 deletions(-)
Open in GerritRelated details
Attention is currently required from:
Gerrit-MessageType: newchange
Gerrit-Project: net
Gerrit-Branch: master
Gerrit-Change-Id: I958f5f1324236e540a9c8cdf4f2b3c805f023732
Gerrit-Change-Number: 757000
Gerrit-PatchSet: 1