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

[device/bcache] rename a unit test

This commit is contained in:
Joe Thornber 2018-02-02 15:38:46 +00:00 committed by David Teigland
parent 0d0fab3d2d
commit b03e55a513

View File

@ -175,7 +175,7 @@ static void test_prefetch_works(void)
}
#define NR_FILES 4
static void test_multiple_files(void)
static void test_read_multiple_files(void)
{
unsigned i;
int fd[NR_FILES];
@ -226,6 +226,6 @@ CU_TestInfo bcache_list[] = {
{ (char*)"block size must be multiple of page size", test_block_size_must_be_multiple_of_page_size },
{ (char*)"reads work", test_reads_work },
{ (char*)"prefetch works", test_prefetch_works },
{ (char*)"multiple files", test_multiple_files },
{ (char*)"read multiple files", test_read_multiple_files },
CU_TEST_INFO_NULL
};