blob: 68c55d284c1fa0b7caaddd0fed45b523c8a54822 [file] [log] [blame]
Joe Tsai492a4762018-11-26 17:16:32 -08001// Copyright 2018 The Go Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style
3// license that can be found in the LICENSE file.
4
5package detrand
6
7import "testing"
8
9func Benchmark(b *testing.B) {
10 b.ReportAllocs()
11 for i := 0; i < b.N; i++ {
12 binaryHash()
13 }
14}