Skip to content

Commit

Permalink
http2: skip TestServer_RejectsLargeFrames on windows (fixes build)
Browse files Browse the repository at this point in the history
Updates golang/go#13434

Change-Id: Icc098d9a6e1af55d36e828fa21d88b967f2f0131
Reviewed-on: https://go-review.googlesource.com/18553
Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
  • Loading branch information
alexbrainman authored and bradfitz committed Jan 13, 2016
1 parent 6448e63 commit 0675873
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions server_test.go
Expand Up @@ -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()
Expand Down

0 comments on commit 0675873

Please sign in to comment.