Imported Upstream version 1.57.0
[platform/upstream/boost.git] / libs / unordered / test / exception / Jamfile.v2
1
2 # Copyright 2006-2008 Daniel James.
3 # Distributed under the Boost Software License, Version 1.0. (See accompanying
4 # file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
5
6 import testing ;
7
8 #alias framework : /boost/test//boost_unit_test_framework ;
9 alias framework : ;
10
11 project unordered-test/exception-tests
12     : requirements
13         <warnings>all
14         <toolset>intel:<warnings>on
15         <toolset>gcc:<cxxflags>"-pedantic -Wstrict-aliasing -fstrict-aliasing -Wextra -Wsign-promo -Wunused-parameter -Wconversion -Wfloat-equal -Wshadow -Wno-long-long"
16         <toolset>darwin:<cxxflags>"-pedantic -Wstrict-aliasing -fstrict-aliasing -Wextra -Wsign-promo -Wunused-parameter -Wconversion -Wfloat-equal -Wshadow"
17     ;
18
19 test-suite unordered-exception
20     :
21         [ run constructor_exception_tests.cpp framework ]
22         [ run copy_exception_tests.cpp framework ]
23         [ run assign_exception_tests.cpp framework ]
24         [ run insert_exception_tests.cpp framework ]
25         [ run erase_exception_tests.cpp framework ]
26         [ run rehash_exception_tests.cpp framework ]
27         [ run swap_exception_tests.cpp framework : : :
28             <define>BOOST_UNORDERED_SWAP_METHOD=2 ]
29     ;