2016-07-31 04:20:21 +08:00
|
|
|
#include "common.h"
|
|
|
|
|
2016-09-14 01:08:34 +08:00
|
|
|
constexpr size_t THREADS_NO = std::min(max_no_threads, 8);
|
2016-07-31 04:20:21 +08:00
|
|
|
|
|
|
|
constexpr size_t elems_per_thread = 100000;
|
2016-12-22 22:51:16 +08:00
|
|
|
constexpr size_t key_range = elems_per_thread * THREADS_NO * 2;
|
|
|
|
|
|
|
|
// TODO: document the test
|
2016-07-31 04:20:21 +08:00
|
|
|
|
|
|
|
// This test checks insert_unique method under pressure.
|
|
|
|
// Test checks for missing data and changed/overwriten data.
|
2016-07-31 20:56:13 +08:00
|
|
|
int main()
|
|
|
|
{
|
2016-08-15 07:09:58 +08:00
|
|
|
init_log();
|
2016-12-22 22:51:16 +08:00
|
|
|
|
2016-08-02 20:23:39 +08:00
|
|
|
memory_check(THREADS_NO, [] {
|
|
|
|
map_t skiplist;
|
|
|
|
|
|
|
|
auto futures = run<std::vector<size_t>>(
|
|
|
|
THREADS_NO, skiplist, [](auto acc, auto index) {
|
2016-12-22 22:51:16 +08:00
|
|
|
auto rand = rand_gen(key_range);
|
2016-08-02 20:23:39 +08:00
|
|
|
long long downcount = elems_per_thread;
|
|
|
|
std::vector<size_t> owned;
|
|
|
|
auto inserter =
|
|
|
|
insert_try<size_t, size_t, map_t>(acc, downcount, owned);
|
|
|
|
|
2016-12-22 22:51:16 +08:00
|
|
|
do
|
|
|
|
{
|
2016-08-02 20:23:39 +08:00
|
|
|
inserter(rand(), index);
|
|
|
|
} while (downcount > 0);
|
|
|
|
|
|
|
|
check_present_same<map_t>(acc, index, owned);
|
|
|
|
return owned;
|
|
|
|
});
|
|
|
|
|
|
|
|
auto accessor = skiplist.access();
|
2016-12-22 22:51:16 +08:00
|
|
|
for (auto &owned : collect(futures))
|
|
|
|
{
|
2016-08-02 20:23:39 +08:00
|
|
|
check_present_same<map_t>(accessor, owned);
|
|
|
|
}
|
|
|
|
|
|
|
|
check_size<map_t>(accessor, THREADS_NO * elems_per_thread);
|
|
|
|
check_order<map_t>(accessor);
|
|
|
|
});
|
2016-07-31 04:20:21 +08:00
|
|
|
}
|