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
James Blair 2023-08-19 22:16:51 +12:00
parent ed506da9fd
commit 4154f9c642
No known key found for this signature in database
3 changed files with 0 additions and 4 deletions

View File

@ -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()

View File

@ -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())

View File

@ -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}