mirror of https://github.com/etcd-io/bbolt.git
Remove deprecated rand.Seed calls.
From go 1.20 if Seed is not called, the generator will be seeded randomly at program startup. Signed-off-by: James Blair <mail@jamesblair.net>pull/555/head
parent
ed506da9fd
commit
4154f9c642
|
@ -461,7 +461,6 @@ func TestCompactCommand_Run(t *testing.T) {
|
|||
if err := binary.Read(crypto.Reader, binary.BigEndian, &s); err != nil {
|
||||
t.Fatal(err)
|
||||
}
|
||||
rand.Seed(s)
|
||||
|
||||
dstdb := btesting.MustCreateDB(t)
|
||||
dstdb.Close()
|
||||
|
|
|
@ -322,7 +322,6 @@ func benchmark_FreelistRelease(b *testing.B, size int) {
|
|||
}
|
||||
|
||||
func randomPgids(n int) []common.Pgid {
|
||||
rand.Seed(42)
|
||||
pgids := make(common.Pgids, n)
|
||||
for i := range pgids {
|
||||
pgids[i] = common.Pgid(rand.Int63())
|
||||
|
|
|
@ -35,8 +35,6 @@ func testSimulate(t *testing.T, openOption *bolt.Options, round, threadCount, pa
|
|||
t.Skip("skipping test in short mode.")
|
||||
}
|
||||
|
||||
rand.Seed(int64(qseed))
|
||||
|
||||
// A list of operations that readers and writers can perform.
|
||||
var readerHandlers = []simulateHandler{simulateGetHandler}
|
||||
var writerHandlers = []simulateHandler{simulateGetHandler, simulatePutHandler}
|
||||
|
|
Loading…
Reference in New Issue