Added stripped uRCU to all unit tests
[libcds.git] / test / unit / list / intrusive_lazy_rcu_shb.cpp
index 9a1e7c12809d6db290a9c55b1453b8441575af17..490b0afd656d9c4712bfa6ea0157867ad243e01f 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, IntrusiveLazyList, rcu_implementation );
+INSTANTIATE_TYPED_TEST_CASE_P( RCU_SHB,          IntrusiveLazyList, rcu_implementation );
+INSTANTIATE_TYPED_TEST_CASE_P( RCU_SHB_stripped, IntrusiveLazyList, rcu_implementation_stripped );
 
 #endif // #ifdef CDS_URCU_SIGNAL_HANDLING_ENABLED