Fixed minor gcc warnings
[libcds.git] / test / unit / intrusive-set / intrusive_feldman_hashset_hp.cpp
1 /*
2     This file is a part of libcds - Concurrent Data Structures library
3
4     (C) Copyright Maxim Khizhinsky (libcds.dev@gmail.com) 2006-2016
5
6     Source code repo: http://github.com/khizmax/libcds/
7     Download: http://sourceforge.net/projects/libcds/files/
8
9     Redistribution and use in source and binary forms, with or without
10     modification, are permitted provided that the following conditions are met:
11
12     * Redistributions of source code must retain the above copyright notice, this
13       list of conditions and the following disclaimer.
14
15     * Redistributions in binary form must reproduce the above copyright notice,
16       this list of conditions and the following disclaimer in the documentation
17       and/or other materials provided with the distribution.
18
19     THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
20     AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
21     IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
22     DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
23     FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
24     DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
25     SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
26     CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
27     OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
28     OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29 */
30
31 #include "test_intrusive_feldman_hashset_hp.h"
32
33 #include <cds/intrusive/feldman_hashset_hp.h>
34
35 namespace {
36     namespace ci = cds::intrusive;
37     typedef cds::gc::HP gc_type;
38
39     class IntrusiveFeldmanHashSet_HP : public cds_test::intrusive_feldman_hashset_hp
40     {
41     protected:
42         typedef cds_test::intrusive_feldman_hashset_hp base_class;
43
44     protected:
45
46         void SetUp()
47         {
48             typedef ci::FeldmanHashSet< gc_type, int_item, 
49                 typename ci::feldman_hashset::make_traits<
50                     ci::feldman_hashset::hash_accessor< hash_accessor >
51                     ,ci::opt::less< std::less<int>>
52                     ,ci::opt::disposer<mock_disposer>
53                 >::type
54             > set_type;
55
56             // +1 - for guarded_ptr
57             cds::gc::hp::GarbageCollector::Construct( set_type::c_nHazardPtrCount + 1, 1, 16 );
58             cds::threading::Manager::attachThread();
59         }
60
61         void TearDown()
62         {
63             cds::threading::Manager::detachThread();
64             cds::gc::hp::GarbageCollector::Destruct( true );
65         }
66     };
67
68     TEST_F( IntrusiveFeldmanHashSet_HP, compare )
69     {
70         struct traits : public ci::feldman_hashset::traits
71         {
72             typedef base_class::hash_accessor hash_accessor;
73             typedef cmp compare;
74             typedef mock_disposer disposer;
75         };
76
77         typedef ci::FeldmanHashSet< gc_type, int_item, traits > set_type;
78
79         set_type s;
80         test( s );
81     }
82
83     TEST_F( IntrusiveFeldmanHashSet_HP, less )
84     {
85         typedef ci::FeldmanHashSet< gc_type, int_item,
86             typename ci::feldman_hashset::make_traits<
87                 ci::feldman_hashset::hash_accessor< hash_accessor >
88                 , ci::opt::less< std::less<int>>
89                 , ci::opt::disposer<mock_disposer>
90             >::type
91         > set_type;
92
93         set_type s( 5, 2 );
94         test( s );
95     }
96
97     TEST_F( IntrusiveFeldmanHashSet_HP, cmpmix )
98     {
99         struct traits : public ci::feldman_hashset::traits
100         {
101             typedef base_class::hash_accessor hash_accessor;
102             typedef cmp compare;
103             typedef std::less<int> less;
104             typedef mock_disposer disposer;
105             typedef simple_item_counter item_counter;
106         };
107
108         typedef ci::FeldmanHashSet< gc_type, int_item, traits > set_type;
109
110         set_type s( 3, 4 );
111         test( s );
112     }
113
114     TEST_F( IntrusiveFeldmanHashSet_HP, backoff )
115     {
116         struct traits : public ci::feldman_hashset::traits
117         {
118             typedef base_class::hash_accessor hash_accessor;
119             typedef cmp compare;
120             typedef mock_disposer disposer;
121             typedef cds::backoff::empty back_off;
122             typedef ci::opt::v::sequential_consistent memory_model;
123         };
124
125         typedef ci::FeldmanHashSet< gc_type, int_item, traits > set_type;
126
127         set_type s( 8, 3 );
128         test( s );
129     }
130
131     TEST_F( IntrusiveFeldmanHashSet_HP, stat )
132     {
133         struct traits : public ci::feldman_hashset::traits
134         {
135             typedef base_class::hash_accessor hash_accessor;
136             typedef cmp compare;
137             typedef mock_disposer disposer;
138             typedef ci::feldman_hashset::stat<> stat;
139         };
140
141         typedef ci::FeldmanHashSet< gc_type, int_item, traits > set_type;
142
143         set_type s( 8, 3 );
144         test( s );
145     }
146
147 } // namespace