test/main.c

changeset 20
db7d9860dbbd
parent 13
98ac89e3aa37
child 21
d599fefc7620
--- 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; 
 }

mercurial