mirror of https://github.com/etcd-io/bbolt.git
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
parent
065ba27ab6
commit
607abddc74
|
@ -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++ {
|
||||
|
|
Loading…
Reference in New Issue