net/packet: record allocations in benchmark.

This commit is contained in:
David Anderson 2020-11-10 02:19:04 -08:00
parent 093431f5dd
commit 6e52633c53
1 changed files with 1 additions and 0 deletions

View File

@ -266,6 +266,7 @@ func BenchmarkDecode(b *testing.B) {
for _, bench := range benches {
b.Run(bench.name, func(b *testing.B) {
b.ReportAllocs()
for i := 0; i < b.N; i++ {
var p Parsed
p.Decode(bench.buf)