summaryrefslogtreecommitdiffstats
path: root/vendor/github.com/hashicorp/golang-lru/testing.go
blob: 492760782c5eafdbec94dbd31ae7a9580346feb6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package lru

import (
	"crypto/rand"
	"math"
	"math/big"
	"testing"
)

func getRand(tb testing.TB) int64 {
	out, err := rand.Int(rand.Reader, big.NewInt(math.MaxInt64))
	if err != nil {
		tb.Fatal(err)
	}
	return out.Int64()
}