X-Git-Url: https://pd.if.org/git/?p=nbds;a=blobdiff_plain;f=test%2Fmap_test1.c;h=6639359c69340c497b97bc5d3c56e15ca9ad08ca;hp=7c35b4592e9959acda072443a25135a13894032b;hb=9d72edf41ce3a2ddbbe2d44afc23ef5ec53339c3;hpb=11572afcaf218cfcbb8e9747f22739f75252c4f4 diff --git a/test/map_test1.c b/test/map_test1.c index 7c35b45..6639359 100644 --- a/test/map_test1.c +++ b/test/map_test1.c @@ -7,6 +7,9 @@ #include "nstring.h" #include "runtime.h" #include "map.h" +#include "list.h" +#include "skiplist.h" +#include "hashtable.h" #define NUM_ITERATIONS 10000000 @@ -82,7 +85,7 @@ int main (int argc, char **argv) { } } - map_type_t map_types[] = { MAP_TYPE_LIST, MAP_TYPE_SKIPLIST, MAP_TYPE_HASHTABLE }; + static const map_impl_t *map_types[] = { &ll_map_impl, &sl_map_impl, &ht_map_impl }; for (int i = 0; i < sizeof(map_types)/sizeof(*map_types); ++i) { #ifdef TEST_STRING_KEYS map_ = map_alloc(map_types[i], &DATATYPE_NSTRING);