mirror of
https://codeberg.org/redict/redict.git
synced 2025-01-23 16:48:27 -05:00
27e29f4fe6
The original jemalloc source tree was modified to: 1. Remove the configure error that prevents nested builds. 2. Insert the Redis private Jemalloc API in order to allow the Redis fragmentation function to work.
20 lines
232 B
C
20 lines
232 B
C
#include "test/jemalloc_test.h"
|
|
|
|
TEST_BEGIN(test_a0)
|
|
{
|
|
void *p;
|
|
|
|
p = a0malloc(1);
|
|
assert_ptr_not_null(p, "Unexpected a0malloc() error");
|
|
a0dalloc(p);
|
|
}
|
|
TEST_END
|
|
|
|
int
|
|
main(void)
|
|
{
|
|
|
|
return (test_no_malloc_init(
|
|
test_a0));
|
|
}
|