Add tests for Allocator implementations

This commit is contained in:
2024-09-07 15:43:47 +01:00
parent 59e56a75d3
commit d30eee0cf8
3 changed files with 57 additions and 1 deletions

View File

@@ -0,0 +1,17 @@
#ifndef TEST_ALLOCATOR_H
#define TEST_ALLOCATOR_H
#include "tester.h"
#ifdef __cplusplus
extern "C" {
#endif // __cplusplus
TestFuncResult test_libc_allocator(void);
TestFuncResult test_arena_allocator(void);
#ifdef __cplusplus
}
#endif // __cplusplus
#endif // !TEST_ALLOCATOR_H