X-Git-Url: https://pd.if.org/git/?p=nbds;a=blobdiff_plain;f=test%2Fmap_test1.c;h=2e9ef859928609a807f6e0b1b039b78d038a518d;hp=9ba7f4a8487221a067aa6d7ff73f357901a73527;hb=a03cf3b0c40e6c3b8b4877b49a64288cb3fcb919;hpb=4ae7c1069667d8f067258d89676126f9b44226d6 diff --git a/test/map_test1.c b/test/map_test1.c index 9ba7f4a..2e9ef85 100644 --- a/test/map_test1.c +++ b/test/map_test1.c @@ -7,6 +7,7 @@ #include "nstring.h" #include "runtime.h" #include "map.h" +#include "rcu.h" #include "list.h" #include "skiplist.h" #include "hashtable.h" @@ -26,14 +27,14 @@ void *worker (void *arg) { do {} while (wait_); #ifdef TEST_STRING_KEYS - nstring_t *key_str = ns_alloc(10); + nstring_t *key_str = ns_alloc(10); #endif for (int i = 0; i < NUM_ITERATIONS/num_threads_; ++i) { unsigned r = nbd_rand(); int key = r & 0xF; #ifdef TEST_STRING_KEYS - key_str->len = sprintf(key_str->data, "%llX", key) + 1; + key_str->len = sprintf(key_str->data, "%X", key) + 1; assert(key_str->len <= 10); if (r & (1 << 8)) { map_set(map_, (map_key_t)key_str, 1); @@ -55,7 +56,6 @@ void *worker (void *arg) { } int main (int argc, char **argv) { - nbd_init(); lwt_set_trace_level("r0m0l3"); char* program_name = argv[0]; @@ -66,7 +66,7 @@ int main (int argc, char **argv) { return -1; } - num_threads_ = 2; + num_threads_ = MAX_NUM_THREADS; if (argc == 2) { errno = 0;