diff -r cdd7a3173249 -r d599fefc7620 test/main.c --- a/test/main.c Wed Jan 11 12:19:48 2012 +0100 +++ b/test/main.c Sat Jan 14 13:07:18 2012 +0100 @@ -31,6 +31,7 @@ #include "list_tests.h" #include "mpool_tests.h" +#include "map_tests.h" int main(int argc, char **argv) { printf("UCX Tests\n---------\n"); @@ -46,6 +47,11 @@ if(mpool_tests()) { fprintf(stderr, "mpool_tests failed\n"); } + + printf("\nUcxMap Tests\n"); + if(map_tests()) { + fprintf(stderr, "map_tests failed\n"); + } return EXIT_SUCCESS; }