1# Boost.Assign library
2#
3#  Copyright Thorsten Ottosen 2003-2005. Use, modification and
4#  distribution is subject to the Boost Software License, Version
5#  1.0. (See accompanying file LICENSE_1_0.txt or copy at
6#  http://www.boost.org/LICENSE_1_0.txt)
7#
8# For more information, see http://www.boost.org/libs/assign/
9#
10
11rule assign-test ( name )
12{
13    return [
14        run $(name).cpp /boost/test//boost_unit_test_framework/<link>static ]
15        ;
16}
17
18test-suite assign :
19    [ assign-test basic ]
20    [ assign-test std ]
21    [ assign-test list_of ]
22    [ assign-test ptr_list_of ]
23    [ assign-test static_list_of ]
24    [ assign-test tuple_list_of ]
25    [ assign-test list_inserter ]
26    [ assign-test ptr_list_inserter ]
27    [ assign-test ptr_map_inserter ]
28    [ assign-test list_of_workaround ]
29    [ assign-test email_example ]
30    [ assign-test my_vector_example ]
31    [ assign-test multi_index_container ]
32    ;
33
34
35