X-Git-Url: https://pd.if.org/git/?p=nbds;a=blobdiff_plain;f=test%2Fmap_test1.c;h=f380918944c88ab6b1e9ee3b2abc5cc44e9554ae;hp=27226d6bb2a52dbe0396869f255ca36ba22e885b;hb=329b5ab58cde015f4faec1879d3106f635294dd6;hpb=d26bac75802a324ed98c8d3d88cfb9eb87b3b35a diff --git a/test/map_test1.c b/test/map_test1.c index 27226d6..f380918 100644 --- a/test/map_test1.c +++ b/test/map_test1.c @@ -13,7 +13,7 @@ #define NUM_ITERATIONS 10000000 -#define TEST_STRING_KEYS +//#define TEST_STRING_KEYS static volatile int wait_; static long num_threads_; @@ -85,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);