Changed SplitListSet/Map<RCU> for new MichaelList extract()/get() semantics
[libcds.git] / tests / test-hdr / set / hdr_splitlist_set_rcu_shb.cpp
index 2d0cf6c3727dc815a1e80c076dd7e2c79235ba2d..378c293886aca18e68377efd31ad6d63340f9459 100644 (file)
@@ -66,7 +66,7 @@ namespace set {
         // traits-based version
         typedef cc::SplitListSet< rcu_type, item, RCU_SHB_cmp_traits > set;
 
-        test_int_rcu< set >();
+        test_int_rcu_michael_list< set >();
 
         // option-based version
         typedef cc::SplitListSet< rcu_type, item,
@@ -83,7 +83,7 @@ namespace set {
                 >
             >::type
         > opt_set;
-        test_int_rcu< opt_set >();
+        test_int_rcu_michael_list< opt_set >();
 #endif
     }
 
@@ -93,7 +93,7 @@ namespace set {
         // traits-based version
         typedef cc::SplitListSet< rcu_type, item, RCU_SHB_less_traits > set;
 
-        test_int_rcu< set >();
+        test_int_rcu_michael_list< set >();
 
         // option-based version
         typedef cc::SplitListSet< rcu_type, item,
@@ -110,7 +110,7 @@ namespace set {
                 >
             >::type
         > opt_set;
-        test_int_rcu< opt_set >();
+        test_int_rcu_michael_list< opt_set >();
 #endif
     }
 
@@ -119,7 +119,7 @@ namespace set {
 #ifdef CDS_URCU_SIGNAL_HANDLING_ENABLED
         // traits-based version
         typedef cc::SplitListSet< rcu_type, item, RCU_cmpmix_traits > set;
-        test_int_rcu< set >();
+        test_int_rcu_michael_list< set >();
 
         // option-based version
         typedef cc::SplitListSet< rcu_type, item,
@@ -135,7 +135,7 @@ namespace set {
                 >
             >::type
         > opt_set;
-        test_int_rcu< opt_set >();
+        test_int_rcu_michael_list< opt_set >();
 #endif
     }
 
@@ -144,7 +144,7 @@ namespace set {
 #ifdef CDS_URCU_SIGNAL_HANDLING_ENABLED
         // traits-based version
         typedef cc::SplitListSet< rcu_type, item, RCU_cmpmix_stat_traits > set;
-        test_int_rcu< set >();
+        test_int_rcu_michael_list< set >();
 
         // option-based version
         typedef cc::SplitListSet< rcu_type, item,
@@ -161,7 +161,7 @@ namespace set {
                 ,cc::opt::stat< cc::split_list::stat<>>
             >::type
         > opt_set;
-        test_int_rcu< opt_set >();
+        test_int_rcu_michael_list< opt_set >();
 #endif
     }