#include #include #include #define ALLOC_MAX (2 * IDTREE_SIZE) static bool check_tal_parent(const tal_t *parent, const tal_t *ctx) { while (ctx) { if (ctx == parent) return true; ctx = tal_parent(ctx); } return false; } int main(int argc, char *argv[]) { unsigned int i; const char allocated[ALLOC_MAX] = { 0 }; struct idtree *idtree; void *ctx; plan_tests(ALLOC_MAX * 5 + 2); ctx = tal(NULL, char); idtree = idtree_new(ctx); ok1(check_tal_parent(ctx, idtree)); for (i = 0; i < ALLOC_MAX; i++) { int id = idtree_add(idtree, &allocated[i], ALLOC_MAX-1); ok1(id == i); ok1(idtree_lookup(idtree, i) == &allocated[i]); } ok1(idtree_add(idtree, &allocated[i], ALLOC_MAX-1) == -1); /* Remove every second one. */ for (i = 0; i < ALLOC_MAX; i += 2) ok1(idtree_remove(idtree, i)); for (i = 0; i < ALLOC_MAX; i++) { if (i % 2 == 0) ok1(!idtree_lookup(idtree, i)); else ok1(idtree_lookup(idtree, i) == &allocated[i]); } /* Now, finally, reallocate. */ for (i = 0; i < ALLOC_MAX/2; i++) { ok1(idtree_add(idtree, &allocated[i*2], INT_MAX) == i * 2); } for (i = 0; i < ALLOC_MAX; i++) { ok1(idtree_lookup(idtree, i) == &allocated[i]); } tal_free(ctx); exit(exit_status()); }