48 lines
779 B
C
48 lines
779 B
C
#include "ks.h"
|
|
|
|
#include <stdlib.h>
|
|
#include <stdio.h>
|
|
#include <string.h>
|
|
#include "tap.h"
|
|
|
|
int main(int argc, char **argv)
|
|
{
|
|
ks_pool_t *pool;
|
|
uint32_t *buf = NULL;
|
|
intptr_t ptr = 0;
|
|
|
|
ks_init();
|
|
|
|
plan(7);
|
|
|
|
ks_pool_open(&pool);
|
|
|
|
buf = (uint32_t *)ks_pool_resize(pool, buf, sizeof(uint32_t) * 1);
|
|
ok(buf != NULL);
|
|
|
|
ptr = (intptr_t)buf;
|
|
|
|
buf = (uint32_t *)ks_pool_resize(pool, buf, sizeof(uint32_t) * 2);
|
|
ok(buf != NULL);
|
|
|
|
ok((intptr_t)buf == ptr);
|
|
|
|
buf = (uint32_t *)ks_pool_resize(pool, buf, sizeof(uint32_t) * 1);
|
|
ok(buf != NULL);
|
|
|
|
ok((intptr_t)buf == ptr);
|
|
|
|
buf = (uint32_t *)ks_pool_resize(pool, buf, sizeof(uint32_t) * 2);
|
|
ok(buf != NULL);
|
|
|
|
ok((intptr_t)buf == ptr);
|
|
|
|
ks_pool_free(pool, &buf);
|
|
|
|
ks_pool_close(&pool);
|
|
|
|
ks_shutdown();
|
|
|
|
done_testing();
|
|
}
|