summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorJoshua Rowe <17525998+omnisci3nce@users.noreply.github.com>2024-06-09 14:59:01 +1000
committerGitHub <noreply@github.com>2024-06-09 14:59:01 +1000
commit9c79df522980eabdc5e52592cbd152e2a285c4cc (patch)
tree9082af194033e5e3e4a770456209d3bac7784943 /tests
parent8d116bd23d9441e33cb3377e90c08169109b438a (diff)
parentd4ff15d9cd82a6e3bc71da9d04ee0f250460cef1 (diff)
Merge pull request #16 from omnisci3nce/port-opengl-ral
Bring back OpenGL (part 1)
Diffstat (limited to 'tests')
-rw-r--r--tests/pool_tests.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/pool_tests.c b/tests/pool_tests.c
index df65773..10a4bed 100644
--- a/tests/pool_tests.c
+++ b/tests/pool_tests.c
@@ -20,7 +20,7 @@ TEST(Pool, SanityCheckTest) { TEST_ASSERT_EQUAL(true, true); }
TEST(Pool, Initialisation) {
// u32 pool
- void_pool pool = void_pool_create(&a, 256, sizeof(u32));
+ void_pool pool = void_pool_create(&a, "Test pool", 256, sizeof(u32));
u32 x_handle;
u32* x_ptr = (u32*)void_pool_alloc(&pool, &x_handle);
// store something in it