mirror of
https://github.com/boostorg/container_hash.git
synced 2026-02-14 12:42:17 +00:00
51 lines
1.4 KiB
Plaintext
51 lines
1.4 KiB
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)
|
|
|
|
subproject libs/functional/hash/test ;
|
|
|
|
import testing ;
|
|
|
|
DEPENDS all : test ;
|
|
|
|
rule hash-test ( name )
|
|
{
|
|
return [
|
|
run $(name).cpp
|
|
<lib>../../../test/build/boost_unit_test_framework
|
|
: : : <include>$(BOOST_ROOT)
|
|
] ;
|
|
}
|
|
|
|
rule hash-test-output ( name )
|
|
{
|
|
return [
|
|
run $(name).cpp
|
|
<lib>../../../test/build/boost_unit_test_framework
|
|
: : : <include>$(BOOST_ROOT) <test-info>always_show_run_output
|
|
] ;
|
|
}
|
|
|
|
{
|
|
test-suite functional/hash
|
|
:
|
|
[ hash-test hash_number_test ]
|
|
[ hash-test hash_pointer_test ]
|
|
[ hash-test hash_function_pointer_test ]
|
|
[ hash-test-output hash_float_test ]
|
|
[ hash-test hash_string_test ]
|
|
[ hash-test hash_range_test ]
|
|
[ hash-test hash_custom_test ]
|
|
[ hash-test hash_built_in_array_test ]
|
|
[ hash-test hash_value_array_test ]
|
|
[ hash-test hash_vector_test ]
|
|
[ hash-test hash_list_test ]
|
|
[ hash-test hash_deque_test ]
|
|
[ hash-test hash_set_test ]
|
|
[ hash-test hash_map_test ]
|
|
[ run link_test.cpp link_test_2.cpp : : : <include>$(BOOST_ROOT) ]
|
|
;
|
|
}
|