Skip to content

Commit 3678185

Browse files
committed
http2: make TestCanonicalHeaderCacheGrowth faster
Lower the number of iterations that this test runs for. Reduces runtime with -race from 27s on my M1 Mac to 0.06s. Change-Id: Ibd4b225277c79d9030c0a21b3077173a787cc4c1 Reviewed-on: https://go-review.googlesource.com/c/net/+/572656 Reviewed-by: Jonathan Amsterdam <[email protected]> LUCI-TryBot-Result: Go LUCI <[email protected]>
1 parent 448c44f commit 3678185

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

http2/server_test.go

+6-3
Original file line numberDiff line numberDiff line change
@@ -4578,13 +4578,16 @@ func TestCanonicalHeaderCacheGrowth(t *testing.T) {
45784578
sc := &serverConn{
45794579
serveG: newGoroutineLock(),
45804580
}
4581-
const count = 1000
4582-
for i := 0; i < count; i++ {
4583-
h := fmt.Sprintf("%v-%v", base, i)
4581+
count := 0
4582+
added := 0
4583+
for added < 10*maxCachedCanonicalHeadersKeysSize {
4584+
h := fmt.Sprintf("%v-%v", base, count)
45844585
c := sc.canonicalHeader(h)
45854586
if len(h) != len(c) {
45864587
t.Errorf("sc.canonicalHeader(%q) = %q, want same length", h, c)
45874588
}
4589+
count++
4590+
added += len(h)
45884591
}
45894592
total := 0
45904593
for k, v := range sc.canonHeader {

0 commit comments

Comments
 (0)