1
0
mirror of git://sourceware.org/git/lvm2.git synced 2024-12-21 13:34:40 +03:00

unit-test/bcache_t: test was using too large a block size

This commit is contained in:
Joe Thornber 2018-05-01 14:17:12 +01:00
parent bfc61a9543
commit 3ea862bdfc

View File

@ -412,7 +412,7 @@ static void test_block_size_must_be_multiple_of_page_size(void *fixture)
for (i = 0; i < DM_ARRAY_SIZE(_bad_examples); i++)
bad_create(_bad_examples[i], 16);
for (i = 1; i < 1000; i++)
for (i = 1; i < 100; i++)
good_create(i * 8, 16);
}