forked from boostorg/unordered
30 lines
1.0 KiB
Plaintext
30 lines
1.0 KiB
Plaintext
|
|
# Copyright Daniel James 2006. 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 ;
|
|
|
|
project unordered-test/unordered
|
|
: requirements
|
|
<toolset>intel-linux:"<cxxflags>-strict_ansi -cxxlib-icc"
|
|
;
|
|
|
|
test-suite unordered-tests
|
|
:
|
|
[ run equivalent_keys_tests.cpp ]
|
|
[ run compile_tests.cpp ]
|
|
[ run constructor_tests.cpp ]
|
|
[ run copy_tests.cpp ]
|
|
[ run assign_tests.cpp ]
|
|
[ run insert_tests.cpp ]
|
|
[ run erase_tests.cpp ]
|
|
[ run find_tests.cpp ]
|
|
[ run bucket_tests.cpp ]
|
|
[ run load_factor_tests.cpp ]
|
|
[ run rehash_tests.cpp ]
|
|
[ run swap_tests.cpp : : : <define>BOOST_UNORDERED_SWAP_METHOD=1 : swap_tests1 ]
|
|
[ run swap_tests.cpp : : : <define>BOOST_UNORDERED_SWAP_METHOD=2 : swap_tests2 ]
|
|
[ run swap_tests.cpp : : : <define>BOOST_UNORDERED_SWAP_METHOD=3 : swap_tests3 ]
|
|
;
|