multi_index/test/Jamfile
Joaquín M. López Muñoz b35bef74e4 initial commit
[SVN r22759]
2004-05-07 10:44:23 +00:00

42 lines
1.9 KiB
Plaintext

# Boost.MultiIndex tests Jamfile
#
# Copyright Joaquín M López Muñoz 2003-2004. Use, modification, and distribution
# are subject to 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)
#
# See http://www.boost.org/libs/multi_index for library home page.
subproject libs/multi_index/test ;
# bring in rules for testing
SEARCH on testing.jam = $(BOOST_BUILD_PATH) ;
include testing.jam ;
# make tests run by default
DEPENDS all : test ;
{
test-suite "multi_index"
: [ run test_basic_main.cpp test_basic.cpp ]
: [ run test_capacity_main.cpp test_capacity.cpp ]
: [ run test_comparison_main.cpp test_comparison.cpp ]
: [ run test_composite_key_main.cpp test_composite_key.cpp ]
: [ run test_conv_iterators_main.cpp test_conv_iterators.cpp ]
: [ run test_copy_assignment_main.cpp test_copy_assignment.cpp ]
: [ run test_iterators_main.cpp test_iterators.cpp ]
: [ run test_key_extractors_main.cpp test_key_extractors.cpp ]
: [ run test_list_ops_main.cpp test_list_ops.cpp ]
: [ run test_modifiers_main.cpp test_modifiers.cpp ]
: [ run test_mpl_ops_main.cpp test_mpl_ops.cpp ]
: [ run test_projection_main.cpp test_projection.cpp ]
: [ run test_range_main.cpp test_range.cpp ]
: [ run test_safe_mode_main.cpp test_safe_mode.cpp ]
: [ run test_set_ops_main.cpp test_set_ops.cpp ]
: [ run test_special_list_ops_main.cpp test_special_list_ops.cpp ]
: [ run test_special_set_ops_main.cpp test_special_set_ops.cpp ]
: [ run test_update_main.cpp test_update.cpp ]
;
}