mirror of
https://github.com/boostorg/container_hash.git
synced 2026-02-23 15:42:18 +00:00
* Avoid float to int warning. * Work around 'using namespace' bug in Visual C++. * Make `<boost/functional/hash/extensions.hpp> self contained. * Move some of the extension implementation from the main hash header into the exensions header. * Remove BOOST_HASH_CHAR_TRAITS from `container_fwd.hpp`. * Other minor changes. Merged revisions 53828,53924,54024-54025,54033-54034,54139-54145,54399 via svnmerge from https://svn.boost.org/svn/boost/trunk ........ r53828 | danieljames | 2009-06-12 19:24:47 +0100 (Fri, 12 Jun 2009) | 1 line Try to avoid float to int warning when a float function doesn't exist. ........ r53924 | danieljames | 2009-06-15 08:37:42 +0100 (Mon, 15 Jun 2009) | 4 lines Remove hash_complex_test's dependency on Boost.Random. Only test for a few values, but that should be okay as there isn't much to test. ........ r54024 | danieljames | 2009-06-17 22:22:49 +0100 (Wed, 17 Jun 2009) | 1 line Put the minimum amount of implementation in the same namespace as the 'using namespace' directives in order to avoid Visual C++ 8 bug. ........ r54025 | danieljames | 2009-06-17 22:23:42 +0100 (Wed, 17 Jun 2009) | 1 line Try to avoid using special macro handling code. ........ r54033 | danieljames | 2009-06-18 00:24:28 +0100 (Thu, 18 Jun 2009) | 1 line Add copyright to namespace_fail_test.cpp ........ r54034 | danieljames | 2009-06-18 00:25:12 +0100 (Thu, 18 Jun 2009) | 1 line A couple of missing newlines. ........ r54139 | danieljames | 2009-06-21 10:41:11 +0100 (Sun, 21 Jun 2009) | 1 line A few more comments in boost::hash. ........ r54140 | danieljames | 2009-06-21 10:41:30 +0100 (Sun, 21 Jun 2009) | 1 line Move includes to the header which they're used in. ........ r54141 | danieljames | 2009-06-21 10:41:46 +0100 (Sun, 21 Jun 2009) | 1 line Revert [54025] "Try to avoid using special macro handling code." ........ r54142 | danieljames | 2009-06-21 10:42:05 +0100 (Sun, 21 Jun 2009) | 1 line Get <boost/functional/hash/extensions.hpp> to work. ........ r54143 | danieljames | 2009-06-21 10:42:20 +0100 (Sun, 21 Jun 2009) | 1 line Move BOOST_HASH_CHAR_TRAITS from container_fwd into the hash headers, and undefine it. ........ r54144 | danieljames | 2009-06-21 10:42:40 +0100 (Sun, 21 Jun 2009) | 1 line Move the support for hashing containers into the extension header, and improve the standard tests. ........ r54145 | danieljames | 2009-06-21 10:51:59 +0100 (Sun, 21 Jun 2009) | 1 line I didn't mean to comment this out. ........ r54399 | danieljames | 2009-06-27 08:39:12 +0100 (Sat, 27 Jun 2009) | 1 line Add am implementation note about the Visual C++ problems. ........ [SVN r54402]
59 lines
2.4 KiB
Plaintext
59 lines
2.4 KiB
Plaintext
|
|
# Copyright 2005-2008 Daniel James.
|
|
# Distributed under the Boost Software License, Version 1.0. (See accompanying
|
|
# file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
|
|
|
|
import testing ;
|
|
|
|
project hash-tests
|
|
: requirements
|
|
<toolset>gcc:<define>_GLIBCXX_DEBUG
|
|
<toolset>gcc:<cxxflags>-Wsign-promo
|
|
#<toolset>gcc:<cxxflags>-Wextra
|
|
;
|
|
|
|
test-suite functional/hash
|
|
:
|
|
[ run hash_fwd_test_1.cpp ]
|
|
[ run hash_fwd_test_2.cpp ]
|
|
[ run hash_number_test.cpp ]
|
|
[ run hash_pointer_test.cpp ]
|
|
[ run hash_function_pointer_test.cpp ]
|
|
[ run hash_float_test.cpp : : : <test-info>always_show_run_output ]
|
|
[ run hash_long_double_test.cpp : : : <test-info>always_show_run_output ]
|
|
[ run hash_string_test.cpp ]
|
|
[ run hash_range_test.cpp ]
|
|
[ run hash_custom_test.cpp ]
|
|
[ run hash_global_namespace_test.cpp ]
|
|
[ run hash_friend_test.cpp ]
|
|
[ run hash_built_in_array_test.cpp ]
|
|
[ run hash_value_array_test.cpp ]
|
|
[ run hash_vector_test.cpp ]
|
|
[ run hash_list_test.cpp ]
|
|
[ run hash_deque_test.cpp ]
|
|
[ run hash_set_test.cpp ]
|
|
[ run hash_map_test.cpp ]
|
|
[ run hash_complex_test.cpp ]
|
|
[ run link_test.cpp link_test_2.cpp ]
|
|
[ run link_ext_test.cpp link_no_ext_test.cpp ]
|
|
[ run extensions_hpp_test.cpp ]
|
|
[ run container_fwd_test.cpp ]
|
|
[ compile-fail hash_no_ext_fail_test.cpp ]
|
|
[ compile-fail namespace_fail_test.cpp ]
|
|
[ run hash_no_ext_macro_1.cpp ]
|
|
[ run hash_no_ext_macro_2.cpp ]
|
|
;
|
|
|
|
test-suite functional/hash_no_ext
|
|
:
|
|
[ run hash_number_test.cpp : : : <define>BOOST_HASH_NO_EXTENSIONS : no_ext_number_test ]
|
|
[ run hash_pointer_test.cpp : : : <define>BOOST_HASH_NO_EXTENSIONS : no_ext_pointer_test ]
|
|
[ run hash_function_pointer_test.cpp : : : <define>BOOST_HASH_NO_EXTENSIONS : no_ext_function_pointer_test ]
|
|
[ run hash_float_test.cpp : : : <define>BOOST_HASH_NO_EXTENSIONS : no_ext_float_test ]
|
|
[ run hash_long_double_test.cpp : : : <define>BOOST_HASH_NO_EXTENSIONS : no_ext_long_double_test ]
|
|
[ run hash_string_test.cpp : : : <define>BOOST_HASH_NO_EXTENSIONS : no_ext_string_test ]
|
|
[ run link_test.cpp link_test_2.cpp : : : <define>BOOST_HASH_NO_EXTENSIONS : no_ext_link_test ]
|
|
;
|
|
|
|
build-project ../examples ;
|