• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 
2 // Copyright 2005-2009 Daniel James.
3 // Distributed under the Boost Software License, Version 1.0. (See accompanying
4 // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
5 
6 #include "./config.hpp"
7 
8 #ifdef BOOST_HASH_TEST_EXTENSIONS
9 #  ifdef BOOST_HASH_TEST_STD_INCLUDES
10 #    include <functional>
11 #  else
12 #    include <boost/container_hash/hash.hpp>
13 #  endif
14 #endif
15 
16 #include <boost/core/lightweight_test.hpp>
17 
18 #ifdef BOOST_HASH_TEST_EXTENSIONS
19 
20 #include <set>
21 
22 using std::set;
23 #define CONTAINER_TYPE set
24 #include "./hash_set_test.hpp"
25 
26 using std::multiset;
27 #define CONTAINER_TYPE multiset
28 #include "./hash_set_test.hpp"
29 
30 #endif
31 
main()32 int main()
33 {
34 #ifdef BOOST_HASH_TEST_EXTENSIONS
35     set_tests::set_hash_integer_tests();
36     multiset_tests::multiset_hash_integer_tests();
37 #endif
38 
39     return boost::report_errors();
40 }
41