Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: downloads/boost_1_33_1/libs/assign/test/Jamfile @ 13

Last change on this file since 13 was 12, checked in by landauf, 17 years ago

added boost

  • Property svn:executable set to *
File size: 980 bytes
Line 
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
11subproject libs/assign/test ;
12
13import testing ;
14
15rule assign-test ( name )
16{
17    return [
18        run $(name).cpp
19        <lib>../../test/build/boost_unit_test_framework
20        : : : <include>$(BOOST_ROOT)
21        ] ;
22}
23
24test-suite assign :
25    [ assign-test basic ]
26    [ assign-test std ]
27    [ assign-test list_of ]
28    [ assign-test ptr_list_of ]
29    [ assign-test static_list_of ]
30    [ assign-test tuple_list_of ]
31    [ assign-test list_inserter ]
32    [ assign-test ptr_list_inserter ]
33    [ assign-test list_of_workaround ]
34    [ assign-test email_example ]
35    [ assign-test my_vector_example ]
36    [ assign-test multi_index_container ]     
37    ;
38
39
Note: See TracBrowser for help on using the repository browser.