Combine the 'container' and 'unordered' tests.

[SVN r42531]
This commit is contained in:
Daniel James
2008-01-06 16:59:18 +00:00
parent 44c402137f
commit 5d83bad7a3
9 changed files with 5 additions and 23 deletions

View File

@ -3,6 +3,5 @@
# 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)
build-project container ;
build-project unordered ;
build-project exception ;

View File

@ -1,21 +0,0 @@
# Copyright 2005 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 ;
project unordered-test/container
: requirements
<toolset>intel-linux:"<cxxflags>-strict_ansi -cxxlib-icc"
<toolset>gcc:<cxxflags>-Wsign-promo
<toolset>msvc:<cxxflags>/W4
;
test-suite container-tests
:
[ run set_compile.cpp ]
[ run map_compile.cpp ]
[ run simple_tests.cpp ]
[ run link_test_1.cpp link_test_2.cpp ]
;

View File

@ -14,8 +14,12 @@ project unordered-test/unordered
test-suite unordered-tests
:
[ run equivalent_keys_tests.cpp ]
[ run set_compile.cpp ]
[ run map_compile.cpp ]
[ run simple_tests.cpp ]
[ run link_test_1.cpp link_test_2.cpp ]
[ run compile_tests.cpp ]
[ run equivalent_keys_tests.cpp ]
[ run constructor_tests.cpp ]
[ run copy_tests.cpp ]
[ run assign_tests.cpp ]