aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools/http2_interop/s6.5_test.go
blob: 9dadd4e699c18f18a0f3fc7cb9ca79f1341a79c3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package http2interop

import (
	"testing"
)

func TestSoonSmallMaxFrameSize(t *testing.T) {
	defer Report(t)
	if *testCase != "framing" {
		t.SkipNow()
	}
	ctx := InteropCtx(t)
	err := testSmallMaxFrameSize(ctx)
	matchError(t, err, "Got goaway frame")
}