2006-05-17 17:19:16 +00:00
|
|
|
|
2008-03-27 23:38:01 +00:00
|
|
|
# Copyright 2006-2008 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-17 17:19:16 +00:00
|
|
|
|
|
|
|
import testing ;
|
|
|
|
|
|
|
|
project unordered-test/unordered
|
|
|
|
: requirements
|
2009-08-31 15:33:28 +00:00
|
|
|
<warnings>all
|
2009-10-25 10:54:28 +00:00
|
|
|
<toolset>intel:<warnings>on
|
2012-02-05 08:44:22 +00:00
|
|
|
# Would be nice to define -Wundef, but I'm getting warnings from
|
|
|
|
# Boost.Preprocessor on trunk.
|
2012-04-08 15:29:15 +00:00
|
|
|
<toolset>gcc:<cxxflags>"-pedantic -Wstrict-aliasing -fstrict-aliasing -Wextra -Wsign-promo -Wunused-parameter -Wconversion -Wno-long-long -Wfloat-equal"
|
|
|
|
<toolset>darwin:<cxxflags>"-pedantic -Wstrict-aliasing -fstrict-aliasing -Wextra -Wsign-promo -Wunused-parameter -Wconversion -Wfloat-equal"
|
2011-10-09 07:56:28 +00:00
|
|
|
#<toolset>gcc:<define>_GLIBCXX_DEBUG
|
2010-06-30 12:04:41 +00:00
|
|
|
#<toolset>darwin:<define>_GLIBCXX_DEBUG
|
2006-05-17 17:19:16 +00:00
|
|
|
;
|
|
|
|
|
2008-01-06 17:16:51 +00:00
|
|
|
test-suite unordered
|
2006-05-17 17:19:16 +00:00
|
|
|
:
|
2008-09-16 21:45:53 +00:00
|
|
|
[ run fwd_set_test.cpp ]
|
|
|
|
[ run fwd_map_test.cpp ]
|
2011-08-26 08:11:46 +00:00
|
|
|
[ run allocator_traits.cpp ]
|
2011-08-28 15:36:58 +00:00
|
|
|
[ run minimal_allocator.cpp ]
|
2008-01-07 19:51:02 +00:00
|
|
|
[ run compile_set.cpp ]
|
|
|
|
[ run compile_map.cpp ]
|
2008-01-06 16:59:18 +00:00
|
|
|
[ run link_test_1.cpp link_test_2.cpp ]
|
2009-11-20 08:03:26 +00:00
|
|
|
[ run incomplete_test.cpp ]
|
2008-01-06 17:13:15 +00:00
|
|
|
[ run simple_tests.cpp ]
|
2008-01-06 16:59:18 +00:00
|
|
|
[ run equivalent_keys_tests.cpp ]
|
2006-05-17 17:19:16 +00:00
|
|
|
[ run constructor_tests.cpp ]
|
|
|
|
[ run copy_tests.cpp ]
|
2010-11-14 11:42:58 +00:00
|
|
|
[ run move_tests.cpp ]
|
2006-05-17 17:19:16 +00:00
|
|
|
[ run assign_tests.cpp ]
|
|
|
|
[ run insert_tests.cpp ]
|
2011-08-31 22:57:57 +00:00
|
|
|
[ run insert_tests.cpp : :
|
|
|
|
: <define>BOOST_UNORDERED_DEPRECATED_PAIR_CONSTRUCT
|
|
|
|
: insert_deprecated ]
|
2007-05-20 17:37:27 +00:00
|
|
|
[ run insert_stable_tests.cpp ]
|
2006-12-03 23:08:17 +00:00
|
|
|
[ run unnecessary_copy_tests.cpp ]
|
2006-05-17 17:19:16 +00:00
|
|
|
[ run erase_tests.cpp ]
|
2006-10-31 22:19:26 +00:00
|
|
|
[ run erase_equiv_tests.cpp ]
|
2006-05-17 17:19:16 +00:00
|
|
|
[ run find_tests.cpp ]
|
2011-08-28 15:43:08 +00:00
|
|
|
[ run at_tests.cpp ]
|
2006-05-21 17:14:11 +00:00
|
|
|
[ run bucket_tests.cpp ]
|
|
|
|
[ run load_factor_tests.cpp ]
|
|
|
|
[ run rehash_tests.cpp ]
|
Merge in support for equality operators for the unordered containers and
hopefully better cross-platform support.
Merged revisions 44778-44835,44837-44918 via svnmerge from
https://svn.boost.org/svn/boost/branches/unordered/trunk
........
r44778 | danieljames | 2008-04-26 17:15:44 +0100 (Sat, 26 Apr 2008) | 2 lines
Remove a trailing comma.
........
r44779 | danieljames | 2008-04-26 17:23:51 +0100 (Sat, 26 Apr 2008) | 1 line
Merge in support for equality operators.
........
r44780 | danieljames | 2008-04-26 17:28:44 +0100 (Sat, 26 Apr 2008) | 1 line
Use my own list container to avoid working around STL container bugs.
........
r44833 | danieljames | 2008-04-28 08:03:43 +0100 (Mon, 28 Apr 2008) | 1 line
Better equality tests.
........
r44834 | danieljames | 2008-04-28 08:04:03 +0100 (Mon, 28 Apr 2008) | 1 line
Remove a superfluous check.
........
r44835 | danieljames | 2008-04-28 08:04:21 +0100 (Mon, 28 Apr 2008) | 1 line
Add equality reference documentation.
........
r44916 | danieljames | 2008-04-30 08:16:52 +0100 (Wed, 30 Apr 2008) | 1 line
New version of list.hpp
........
r44917 | danieljames | 2008-04-30 08:18:31 +0100 (Wed, 30 Apr 2008) | 1 line
Support compilers without ADL in the compile tests.
........
r44918 | danieljames | 2008-04-30 08:25:20 +0100 (Wed, 30 Apr 2008) | 7 lines
Change the typedef of buffered functions as it was confusing MSVC 6.5
get_allocator wasn't compiling when the allocator workaround is used because it
couldn't cast from the wrapped allocator to an allocator of another type. So
use value_alloc_ when it's available (it's only unavailable on compilers with
C++0x support, which don't require the workaround).
........
[SVN r44919]
2008-04-30 07:57:04 +00:00
|
|
|
[ run equality_tests.cpp ]
|
2011-08-31 22:23:01 +00:00
|
|
|
[ run equality_deprecated.cpp ]
|
2011-08-11 21:18:43 +00:00
|
|
|
[ run swap_tests.cpp ]
|
2012-01-11 22:23:49 +00:00
|
|
|
|
|
|
|
[ run compile_set.cpp : :
|
|
|
|
: <define>BOOST_UNORDERED_USE_MOVE
|
|
|
|
: bmove_compile_set ]
|
|
|
|
[ run compile_map.cpp : :
|
|
|
|
: <define>BOOST_UNORDERED_USE_MOVE
|
|
|
|
: bmove_compile_map ]
|
|
|
|
[ run copy_tests.cpp : :
|
|
|
|
: <define>BOOST_UNORDERED_USE_MOVE
|
|
|
|
: bmove_copy ]
|
|
|
|
[ run move_tests.cpp : :
|
|
|
|
: <define>BOOST_UNORDERED_USE_MOVE
|
|
|
|
: bmove_move ]
|
|
|
|
[ run assign_tests.cpp : :
|
|
|
|
: <define>BOOST_UNORDERED_USE_MOVE
|
|
|
|
: bmove_assign ]
|
2006-05-17 17:19:16 +00:00
|
|
|
;
|