2006-05-21 17:14:11 +00:00
|
|
|
|
2007-03-18 20:00:59 +00:00
|
|
|
# Copyright 2006-2007 Daniel James.
|
2006-07-01 22:31:26 +00:00
|
|
|
# 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)
|
2006-05-21 17:14:11 +00:00
|
|
|
|
|
|
|
import testing ;
|
|
|
|
|
2006-12-03 23:08:17 +00:00
|
|
|
alias framework : /boost/test//boost_unit_test_framework ;
|
2006-05-21 17:14:11 +00:00
|
|
|
|
|
|
|
project unordered-test/exception-tests
|
|
|
|
: requirements
|
|
|
|
<toolset>intel-linux:"<cxxflags>-strict_ansi -cxxlib-icc"
|
|
|
|
;
|
|
|
|
|
|
|
|
test-suite unordered-tests
|
|
|
|
:
|
|
|
|
[ run constructor_tests.cpp framework ]
|
|
|
|
[ run copy_tests.cpp framework ]
|
|
|
|
[ run assign_tests.cpp framework ]
|
|
|
|
[ run insert_tests.cpp framework ]
|
|
|
|
[ run erase_tests.cpp framework ]
|
|
|
|
[ run rehash_tests.cpp framework ]
|
|
|
|
[ run swap_tests.cpp framework : : :
|
2007-12-16 13:17:44 +00:00
|
|
|
<define>BOOST_UNORDERED_SWAP_METHOD=2 ]
|
2006-05-21 17:14:11 +00:00
|
|
|
;
|