#include #include #include "test.h" /* required defs */ #define SPTREE_TYPE int #define SPTREE_CMP(a, b) ((b) - (a)) #define SPTREE_NAME ints /* optional defs */ #define SPTREE_MALLOC mallocc #define SPTREE_CALLOC callocc #define SPTREE_REALLOC reallocc #define SPTREE_FREE free #include int main() { #if defined(COVERAGE) assert(!covsrv_init()); atexit(covsrv_destroy); #endif struct ints ints = ints_create(); for (int i = 0; i < 1000000; ++i) { if (!ints_insert(&ints, i)) { fprintf(stderr, "failed inserting %d\n", i); ints_destroy(&ints); return -1; } } assert(ints_len(&ints) == 1000000); for (int i = 0; i < 1000000; ++i) { int *v = ints_find(&ints, i); assert(v && *v == i); } int i = 0; foreach(ints, iter, &ints) { /* since my trees are ordered, this must hold, although you * might consider it an implementation detail that shouldn't be * relied on */ assert(iter && *iter == i); i++; } for (int i = 0; i < 1000000; ++i) { ints_remove(&ints, i); } assert(ints_len(&ints) == 0); ints_destroy(&ints); }