mirror of
https://github.com/boostorg/container_hash.git
synced 2026-02-24 03:52:15 +00:00
Merged revisions 49339-49341,49541 via svnmerge from https://svn.boost.org/svn/boost/trunk ........ r49339 | danieljames | 2008-10-15 11:25:07 +0100 (Wed, 15 Oct 2008) | 1 line Note about change in boost 1.37. ........ r49340 | danieljames | 2008-10-15 11:26:55 +0100 (Wed, 15 Oct 2008) | 4 lines Changed the warnings in the deprecated headers from 1.34.0 to errors. These will be removed in a future version of Boost (probably 1.39.0). ........ r49341 | danieljames | 2008-10-15 11:34:15 +0100 (Wed, 15 Oct 2008) | 2 lines Add note about changes to deprecated headers. Refs #2412. ........ r49541 | danieljames | 2008-11-02 22:32:00 +0000 (Sun, 02 Nov 2008) | 3 lines Slightly more accurated comment - now that the headers cause errors, they've moved past the deprecation stage (I think). ........ [SVN r49597]
47 lines
1.6 KiB
Plaintext
47 lines
1.6 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 container_fwd_test.cpp ]
|
|
[ compile-fail hash_no_ext_fail_test.cpp ]
|
|
[ run hash_no_ext_macro_1.cpp ]
|
|
[ run hash_no_ext_macro_2.cpp ]
|
|
[ compile-fail hash_deprecated_headers.cpp ]
|
|
;
|
|
|
|
build-project ../examples ;
|