diff -r 2e7050c3a18e -r db7d9860dbbd test/main.c --- a/test/main.c Sat Dec 31 22:48:28 2011 +0100 +++ b/test/main.c Thu Jan 05 14:53:54 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"); @@ -49,6 +50,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; }