Files
functional/hash/test/Jamfile.v2
Daniel James 86d76f397d Add a test for hash_value called with an array. hash_value tests for other
types will be added to their normal tests.


[SVN r28275]
2005-04-16 10:31:20 +00:00

27 lines
957 B
Plaintext

# (C) Copyright Daniel James 2005.
# Use, modification and distribution are subject to 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 ;
alias framework : /boost/test//boost_unit_test_framework ;
test-suite functional/hash
:
[ run hash_number_test.cpp framework ]
[ run hash_pointer_test.cpp framework ]
[ run hash_float_test.cpp framework ]
[ run hash_string_test.cpp framework ]
[ run hash_range_test.cpp framework ]
[ run hash_custom_test.cpp framework ]
[ run hash_built_in_array_test.cpp framework ]
[ run hash_value_array_test.cpp framework ]
[ run hash_vector_test.cpp framework ]
[ run hash_list_test.cpp framework ]
[ run hash_deque_test.cpp framework ]
[ run hash_set_test.cpp framework ]
[ run hash_map_test.cpp framework ]
;