Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(750)

Side by Side Diff: third_party/grpc/tools/http2_interop/s6.5_test.go

Issue 1932353002: Initial checkin of gRPC to third_party/ Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 package http2interop
2
3 import (
4 "testing"
5 )
6
7 func TestSoonSmallMaxFrameSize(t *testing.T) {
8 defer Report(t)
9 if *testCase != "framing" {
10 t.SkipNow()
11 }
12 ctx := InteropCtx(t)
13 err := testSmallMaxFrameSize(ctx)
14 matchError(t, err, "Got goaway frame")
15 }
16
17 func TestSoonAllSettingsFramesAcked(t *testing.T) {
18 defer Report(t)
19 if *testCase != "framing" {
20 t.SkipNow()
21 }
22 ctx := InteropCtx(t)
23 if err := testAllSettingsFramesAcked(ctx); err != nil {
24 t.Fatal(err)
25 }
26 }
OLDNEW
« no previous file with comments | « third_party/grpc/tools/http2_interop/s6.5.go ('k') | third_party/grpc/tools/http2_interop/settings.go » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698