Added new option hash_size for FeldmanHashSet
[libcds.git] / test / unit / set / skiplist_rcu_gpi.cpp
index 86ca7c2885fc970dec91be37116b0ab3bc9e1a30..8d2d54e591276cea7185effd7d3550a60fcd0b54 100644 (file)
 
 namespace {
 
-    typedef cds::urcu::general_instant<> rcu_implementation;
+    typedef cds::urcu::general_instant<>        rcu_implementation;
+    typedef cds::urcu::general_instant_stripped rcu_implementation_stripped;
 
 } // namespace
 
-INSTANTIATE_TYPED_TEST_CASE_P( RCU_GPI, SkipListSet, rcu_implementation );
+INSTANTIATE_TYPED_TEST_CASE_P( RCU_GPI,          SkipListSet, rcu_implementation );
+INSTANTIATE_TYPED_TEST_CASE_P( RCU_GPI_stripped, SkipListSet, rcu_implementation_stripped );