tests/cache_test: mark arguments const

While at it, also fix up a failure message to not reference timestamp
and gpu dirs as those are no longer being made.

Signed-off-by: Grazvydas Ignotas <notasas@gmail.com>
Reviewed-by: Timothy Arceri <tarceri@itsqueeze.com>
This commit is contained in:
Grazvydas Ignotas 2017-03-25 00:56:51 +02:00 committed by Timothy Arceri
parent d87ef8f77c
commit 7d8ee4b4d0
1 changed files with 4 additions and 4 deletions

View File

@ -128,7 +128,7 @@ rmrf_local(const char *path)
}
static void
check_directories_created(char *cache_dir)
check_directories_created(const char *cache_dir)
{
bool sub_dirs_created = false;
@ -144,7 +144,7 @@ check_directories_created(char *cache_dir)
}
}
expect_true(sub_dirs_created, "create timestamp and gpu ip sub dirs");
expect_true(sub_dirs_created, "create sub dirs");
}
#define CACHE_TEST_TMP "./cache-test-tmp"
@ -208,7 +208,7 @@ test_disk_cache_create(void)
}
static bool
does_cache_contain(struct disk_cache *cache, cache_key key)
does_cache_contain(struct disk_cache *cache, const cache_key key)
{
void *result;
@ -223,7 +223,7 @@ does_cache_contain(struct disk_cache *cache, cache_key key)
}
static void
wait_until_file_written(struct disk_cache *cache, cache_key key)
wait_until_file_written(struct disk_cache *cache, const cache_key key)
{
struct timespec req;
struct timespec rem;