Added stripped uRCU to all unit tests
[libcds.git] / test / unit / list / kv_lazy_rcu_gpt.cpp
index 48ba2e8324724a99f5beb8b323caf3161e4340e4..ea573c288f1b743698542c6075264acf4e8430b8 100644 (file)
 
 namespace {
 
-    typedef cds::urcu::general_threaded<> rcu_implementation;
+    typedef cds::urcu::general_threaded<>        rcu_implementation;
+    typedef cds::urcu::general_threaded_stripped rcu_implementation_stripped;
 
 } // namespace
 
-INSTANTIATE_TYPED_TEST_CASE_P( RCU_GPT, LazyKVList, rcu_implementation );
+INSTANTIATE_TYPED_TEST_CASE_P( RCU_GPT,          LazyKVList, rcu_implementation );
+INSTANTIATE_TYPED_TEST_CASE_P( RCU_GPT_stripped, LazyKVList, rcu_implementation_stripped );