Fix stats of tests.
authorFlorent Bruneau <florent.bruneau@polytechnique.org>
Sun, 5 Oct 2008 09:00:13 +0000 (11:00 +0200)
committerFlorent Bruneau <florent.bruneau@polytechnique.org>
Sun, 5 Oct 2008 09:00:13 +0000 (11:00 +0200)
Signed-off-by: Florent Bruneau <florent.bruneau@polytechnique.org>
common/tst-trie.c
postlicyd/tst-rbl.c

index c9e16dc..9f69b1e 100644 (file)
@@ -128,7 +128,7 @@ int main(int argc, char *argv[])
      */
     if (argc > 1) {
         trie = create_trie_from_file(argv[1]);
-        trie_inspect(trie, true);
+        trie_inspect(trie, false);
         trie_delete(&trie);
     }
     return 0;
index 30d6533..7e567b1 100644 (file)
 
 #include "common.h"
 #include "rbl.h"
+#include "array.h"
 
 int main(int argc, char *argv[])
 {
     if (argc > 1) {
         rbldb_t *db = rbldb_create(argv[1], false);
         printf("loaded: %s, %d ips, %d o\n", argv[1], rbldb_stats(db),
-               rbldb_stats(db) * 4);
+               rbldb_stats(db) * 1 + 65536 * sizeof(A(uint16_t)));
 
         time_t now = time(NULL);
         for (uint32_t i = 0 ; i < 1000000000 ; ++i) {