#include "common.h" constexpr size_t THREADS_NO = std::min(max_no_threads, 8); constexpr size_t elems_per_thread = 100000; constexpr size_t key_range = elems_per_thread * THREADS_NO * 2; // TODO: document the test // This test checks insert_unique method under pressure. // Threads will try to insert keys in the same order. // This will force threads to compete intensly with each other. // Test checks for missing data and changed/overwriten data. int main() { init_log(); memory_check(THREADS_NO, [] { map_t skiplist; auto futures = run>( THREADS_NO, skiplist, [](auto acc, auto index) { auto rand = rand_gen(key_range); long long downcount = elems_per_thread; std::vector owned; auto inserter = insert_try(acc, downcount, owned); for (int i = 0; downcount > 0; i++) { inserter(i, index); } check_present_same(acc, index, owned); return owned; }); auto accessor = skiplist.access(); for (auto &owned : collect(futures)) { check_present_same(accessor, owned); } check_size(accessor, THREADS_NO * elems_per_thread); check_order(accessor); }); }