Fixed MultiLevelHashSet MT-test
[libcds.git] / tests / unit / set2 / set_insdel_string.cpp
1 //$$CDS-header$$
2
3 #include "set2/set_insdel_string.h"
4
5 namespace set2 {
6     CPPUNIT_TEST_SUITE_REGISTRATION( Set_InsDel_string );
7
8     void Set_InsDel_string::setUpParams( const CppUnitMini::TestCfg& cfg )
9     {
10         c_nSetSize = cfg.getSizeT("MapSize", c_nSetSize );
11         c_nInsertThreadCount = cfg.getSizeT("InsertThreadCount", c_nInsertThreadCount );
12         c_nDeleteThreadCount = cfg.getSizeT("DeleteThreadCount", c_nDeleteThreadCount );
13         c_nThreadPassCount = cfg.getSizeT("ThreadPassCount", c_nThreadPassCount );
14         c_nMaxLoadFactor = cfg.getSizeT("MaxLoadFactor", c_nMaxLoadFactor );
15         c_bPrintGCState = cfg.getBool("PrintGCStateFlag", c_bPrintGCState );
16
17         c_nCuckooInitialSize = cfg.getSizeT("CuckooInitialSize", c_nCuckooInitialSize );
18         c_nCuckooProbesetSize = cfg.getSizeT("CuckooProbesetSize", c_nCuckooProbesetSize );
19         c_nCuckooProbesetThreshold = cfg.getSizeT("CuckooProbesetThreshold", c_nCuckooProbesetThreshold );
20
21         c_nMultiLevelSet_HeadBits = cfg.getSizeT("MultiLevelMapHeadBits", c_nMultiLevelSet_HeadBits);
22         c_nMultiLevelSet_ArrayBits = cfg.getSizeT("MultiLevelMapArrayBits", c_nMultiLevelSet_ArrayBits);
23
24         if ( c_nInsertThreadCount == 0 )
25             c_nInsertThreadCount = std::thread::hardware_concurrency();
26         if ( c_nDeleteThreadCount == 0 )
27             c_nDeleteThreadCount = std::thread::hardware_concurrency();
28     }
29 } // namespace set2