os/bluestore: make block array of test_bmap_alloc self-adapting

So we are be able change total_blocks or zone_size flexibly and
thus append more test cases.

Signed-off-by: xie xingguo <xie.xingguo@zte.com.cn>
This commit is contained in:
xie xingguo 2016-06-26 12:07:53 +08:00
parent 06c48e410a
commit 1af00b15e1

View File

@ -390,7 +390,6 @@ TEST(BitAllocator, test_bmap_alloc)
delete alloc;
alloc = new BitAllocator(total_blocks, zone_size, CONCURRENT);
int64_t blocks[2048] = {0};
for (int64_t i = 0; i < alloc->size(); i++) {
allocated = alloc->alloc_blocks(1, &start_block);
bmap_test_assert(allocated == 1);
@ -399,6 +398,8 @@ TEST(BitAllocator, test_bmap_alloc)
alloc->free_blocks(i, 1);
}
int64_t blocks[alloc->size() / 2];
memset(blocks, 0, sizeof(blocks));
allocated = alloc->alloc_blocks_dis(alloc->size()/2, blocks);
bmap_test_assert(allocated == alloc->size() / 2);