| Index: third_party/grpc/tools/http2_interop/s6.5_test.go
|
| diff --git a/third_party/grpc/tools/http2_interop/s6.5_test.go b/third_party/grpc/tools/http2_interop/s6.5_test.go
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..063fd5664c89f03b885cf24a87a60fa4bfdce186
|
| --- /dev/null
|
| +++ b/third_party/grpc/tools/http2_interop/s6.5_test.go
|
| @@ -0,0 +1,26 @@
|
| +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")
|
| +}
|
| +
|
| +func TestSoonAllSettingsFramesAcked(t *testing.T) {
|
| + defer Report(t)
|
| + if *testCase != "framing" {
|
| + t.SkipNow()
|
| + }
|
| + ctx := InteropCtx(t)
|
| + if err := testAllSettingsFramesAcked(ctx); err != nil {
|
| + t.Fatal(err)
|
| + }
|
| +}
|
|
|