Added stripped uRCU to all unit tests
[libcds.git] / test / unit / intrusive-set / intrusive_skiplist_rcu_gpb.cpp
index a80370b944ff109043329f19af76297e164a3302..d33465cc96a3f41c09bcd33c25c2e5a11a553ff8 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, IntrusiveSkipListSet, rcu_implementation );
+INSTANTIATE_TYPED_TEST_CASE_P( RCU_GPB,          IntrusiveSkipListSet, rcu_implementation );
+INSTANTIATE_TYPED_TEST_CASE_P( RCU_GPB_stripped, IntrusiveSkipListSet, rcu_implementation_stripped );