Added stripped uRCU to all unit tests
[libcds.git] / test / unit / list / intrusive_michael_rcu_gpi.cpp
index 14465f39cd27337aef5505b4a635ec0fa404a9c9..edaeaf3af449b56c30b8d71e0dcf9f702b7d2760 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, IntrusiveMichaelList, rcu_implementation );
+INSTANTIATE_TYPED_TEST_CASE_P( RCU_GPI,          IntrusiveMichaelList, rcu_implementation );
+INSTANTIATE_TYPED_TEST_CASE_P( RCU_GPI_stripped, IntrusiveMichaelList, rcu_implementation_stripped );