Splitted some unit tests to reduce memory consumption in compile time
[libcds.git] / test / unit / list / kv_michael_rcu_gpb.cpp
index 29805aaeafcb64b0ae2955c145cdeb8a50f86441..50612c45662a2fef1233ef2cd58b5b0497d64039 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, MichaelKVList, rcu_implementation );
+INSTANTIATE_TYPED_TEST_CASE_P( RCU_GPB,          MichaelKVList, rcu_implementation );
+INSTANTIATE_TYPED_TEST_CASE_P( RCU_GPB_stripped, MichaelKVList, rcu_implementation_stripped );