Removed signal_threaded uRCU
[libcds.git] / test / include / cds_test / fixture.h
1 /*
2     This file is a part of libcds - Concurrent Data Structures library
3
4     (C) Copyright Maxim Khizhinsky (libcds.dev@gmail.com) 2006-2017
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 #ifndef CDSTEST_FIXTURE_H
32 #define CDSTEST_FIXTURE_H
33
34 #include <gtest/gtest.h>
35 #include <algorithm>
36 #include <random>
37
38 // earlier version of gtest do not support 4th parameter in INSTANTIATE_TEST_CASE_P macro
39 //TODO: how to known gtest version?..
40 //#define CDSTEST_GTEST_INSTANTIATE_TEST_CASE_P_HAS_4TH_ARG
41
42 namespace cds_test {
43
44     class fixture : public ::testing::Test
45     {
46     protected:
47         template <typename RandomIt>
48         static void shuffle( RandomIt first, RandomIt last )
49         {
50             static std::random_device random_dev;
51             static std::mt19937       random_gen( random_dev());
52
53             std::shuffle( first, last, random_gen );
54         }
55
56         static inline unsigned int rand( unsigned int nMax )
57         {
58             double rnd = double( std::rand()) / double( RAND_MAX );
59             unsigned int n = (unsigned int)(rnd * nMax);
60             return n < nMax ? n : (n - 1);
61         }
62     };
63
64 } // namespace cds_test
65
66 #endif // CDSTEST_FIXTURE_H