Commit 8760df47 authored by Alex Brainman's avatar Alex Brainman Committed by Brad Fitzpatrick

http2: skip TestServer_RejectsLargeFrames on windows (fixes build)

Updates golang/go#13434

Change-Id: Icc098d9a6e1af55d36e828fa21d88b967f2f0131
Reviewed-on: https://go-review.googlesource.com/18553Reviewed-by: 's avatarBrad Fitzpatrick <bradfitz@golang.org>
parent c93a9b4f
......@@ -992,6 +992,10 @@ func TestServer_Ping(t *testing.T) {
}
func TestServer_RejectsLargeFrames(t *testing.T) {
if runtime.GOOS == "windows" {
t.Skip("see golang.org/issue/13434")
}
st := newServerTester(t, nil)
defer st.Close()
st.greet()
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment