aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools/http2_interop/s6.5_test.go
diff options
context:
space:
mode:
authorGravatar Carl Mastrangelo <notcarl@google.com>2015-12-01 16:19:23 -0800
committerGravatar Carl Mastrangelo <notcarl@google.com>2015-12-03 12:37:30 -0800
commit368a304c940e5379935aa828f3f30d17d7a29fbb (patch)
treebcc439679d6660c0026589f4251269615832540b /tools/http2_interop/s6.5_test.go
parentf7abb65c37bb114bc73e54bf46b11066a29f545b (diff)
Add http2 test for small http max frame size
Diffstat (limited to 'tools/http2_interop/s6.5_test.go')
-rw-r--r--tools/http2_interop/s6.5_test.go14
1 files changed, 14 insertions, 0 deletions
diff --git a/tools/http2_interop/s6.5_test.go b/tools/http2_interop/s6.5_test.go
new file mode 100644
index 0000000000..48e8ced576
--- /dev/null
+++ b/tools/http2_interop/s6.5_test.go
@@ -0,0 +1,14 @@
+package http2interop
+
+import (
+ "testing"
+)
+
+func TestSmallMaxFrameSize(t *testing.T) {
+ if *testCase != "experimental" {
+ t.SkipNow()
+ }
+ ctx := InteropCtx(t)
+ err := testSmallMaxFrameSize(ctx)
+ matchError(t, err, "Got goaway frame")
+}