diff options
author | Jan Tattermusch <jtattermusch@users.noreply.github.com> | 2016-04-07 20:44:14 -0700 |
---|---|---|
committer | Jan Tattermusch <jtattermusch@users.noreply.github.com> | 2016-04-07 20:44:14 -0700 |
commit | 4eb1f3fe141fb9a6c2e5f0c1252e45cb15c414e3 (patch) | |
tree | 83bacaa27ee24ee40496eea41596b9c394c9259f | |
parent | d6ac251d4be334d7e13cfedb6181c161fdf05c41 (diff) | |
parent | 30d39ab07552fd6c13b49d6c40f8571f4c615438 (diff) |
Merge pull request #6122 from carl-mastrangelo/test
Update http2 interop tests to work with Servers implementing HTTP Alt…
-rw-r--r-- | tools/http2_interop/http2interop.go | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tools/http2_interop/http2interop.go b/tools/http2_interop/http2interop.go index 1276a71afc..fa113961f2 100644 --- a/tools/http2_interop/http2interop.go +++ b/tools/http2_interop/http2interop.go @@ -150,7 +150,8 @@ func testUnknownFrameType(ctx *HTTP2InteropCtx) error { } // Write a bunch of invalid frame types. - for ft := ContinuationFrameType + 1; ft != 0; ft++ { + // Frame number 11 is the upcoming ALTSVC frame, and should not be tested. + for ft := ContinuationFrameType + 2; ft != 0; ft++ { fh := &UnknownFrame{ Header: FrameHeader{ Type: ft, |