/* Copyright (c) 2017-2018 Dovecot authors, see the included COPYING file */
#include "test-lib.h"
struct test_struct {
};
static void test_imem_alloc(void)
{
test_begin("imem allocs");
/* regular alloc */
/* realloc */
sizeof(struct test_struct) * 4);
/* freeing realloced memory */
/* allcating new memory with realloc */
test_end();
}
void test_imem(void)
{
}