Added stripped uRCU to all unit tests
[libcds.git] / test / unit / intrusive-set / intrusive_feldman_hashset_rcu_gpb.cpp
index 35c432e7903ff577a485c716efe0810b94e4aeed..b85f86e592ba99335167e2ad034312624e09ccf8 100644 (file)
 
 namespace {
 
-    typedef cds::urcu::general_buffered<> rcu_implementation;
+    typedef cds::urcu::general_buffered<>        rcu_implementation;
+    typedef cds::urcu::general_buffered_stripped rcu_implementation_stripped;
 
 } // namespace
 
-INSTANTIATE_TYPED_TEST_CASE_P( RCU_GPB, IntrusiveFeldmanHashSet, rcu_implementation );
+INSTANTIATE_TYPED_TEST_CASE_P( RCU_GPB,          IntrusiveFeldmanHashSet, rcu_implementation );
+INSTANTIATE_TYPED_TEST_CASE_P( RCU_GPB_stripped, IntrusiveFeldmanHashSet, rcu_implementation_stripped );
+