tests/cache_test: mark arguments const
authorGrazvydas Ignotas <notasas@gmail.com>
Fri, 24 Mar 2017 22:56:51 +0000 (00:56 +0200)
committerTimothy Arceri <tarceri@itsqueeze.com>
Sat, 25 Mar 2017 01:46:18 +0000 (12:46 +1100)
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>
src/compiler/glsl/tests/cache_test.c

index 2302f448d21c921b106c923e79954200b43a5781..537a81bc7641de1bec4aa14d0b683dc27547c278 100644 (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;