explicitly set the pagesize as 4096 for the concurrent test

Different platforms may have different page size, but the test
should be independent to the platforms; so explicitly set the
pagesize as 4096.

Signed-off-by: Benjamin Wang <benjamin.ahrtr@gmail.com>
pull/776/head
Benjamin Wang 2024-06-26 12:37:08 +01:00
parent 065ba27ab6
commit 607abddc74
1 changed files with 3 additions and 1 deletions

View File

@ -165,7 +165,9 @@ func concurrentReadAndWrite(t *testing.T,
testDuration time.Duration) {
t.Log("Preparing db.")
db := mustCreateDB(t, nil)
db := mustCreateDB(t, &bolt.Options{
PageSize: 4096,
})
defer db.Close()
err := db.Update(func(tx *bolt.Tx) error {
for i := 0; i < conf.bucketCount; i++ {