mirror of https://gitee.com/bigwinds/arangodb
30 lines
1.2 KiB
Plaintext
30 lines
1.2 KiB
Plaintext
|
|
# Copyright 2006-2008 Daniel James.
|
|
# 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)
|
|
|
|
import testing ;
|
|
|
|
#alias framework : /boost/test//boost_unit_test_framework ;
|
|
alias framework : ;
|
|
|
|
project unordered-test/exception-tests
|
|
: requirements
|
|
<warnings>all
|
|
<toolset>intel:<warnings>on
|
|
<toolset>gcc:<cxxflags>"-pedantic -Wstrict-aliasing -fstrict-aliasing -Wextra -Wsign-promo -Wunused-parameter -Wconversion -Wfloat-equal -Wshadow -Wno-long-long"
|
|
<toolset>darwin:<cxxflags>"-pedantic -Wstrict-aliasing -fstrict-aliasing -Wextra -Wsign-promo -Wunused-parameter -Wconversion -Wfloat-equal -Wshadow"
|
|
;
|
|
|
|
test-suite unordered-exception
|
|
:
|
|
[ run constructor_exception_tests.cpp framework ]
|
|
[ run copy_exception_tests.cpp framework ]
|
|
[ run assign_exception_tests.cpp framework ]
|
|
[ run insert_exception_tests.cpp framework ]
|
|
[ run erase_exception_tests.cpp framework ]
|
|
[ run rehash_exception_tests.cpp framework ]
|
|
[ run swap_exception_tests.cpp framework : : :
|
|
<define>BOOST_UNORDERED_SWAP_METHOD=2 ]
|
|
;
|