Added stripped uRCU to all unit tests
[libcds.git] / test / unit / list / kv_michael_rcu_shb.cpp
index e7b376ce91ded9fa49dc1b4f982f86d0a8e84984..07f74f98900cae47827b04502b0bdbb1a974e85e 100644 (file)
 
 namespace {
 
-    typedef cds::urcu::signal_buffered<> rcu_implementation;
+    typedef cds::urcu::signal_buffered<>        rcu_implementation;
+    typedef cds::urcu::signal_buffered_stripped rcu_implementation_stripped;
 
 } // namespace
 
-INSTANTIATE_TYPED_TEST_CASE_P( RCU_SHB, MichaelKVList, rcu_implementation );
+INSTANTIATE_TYPED_TEST_CASE_P( RCU_SHB,          MichaelKVList, rcu_implementation );
+INSTANTIATE_TYPED_TEST_CASE_P( RCU_SHB_stripped, MichaelKVList, rcu_implementation_stripped );
 
 #endif