Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: downloads/boost_1_33_1/libs/assign/test/Jamfile.v2 @ 20

Last change on this file since 20 was 12, checked in by landauf, 18 years ago

added boost

File size: 807 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
11rule assign-test ( name )
12{
13    return [
14        run $(name).cpp /boost/test//boost_unit_test_framework ]
15        ;
16}
17
18test-suite assign :
19    [ assign-test basic ]
20    [ assign-test std ]
21    [ assign-test list_of ]
22    [ assign-test static_list_of ]
23    [ assign-test tuple_list_of ]
24    [ assign-test list_inserter ]
25    [ assign-test list_of_workaround ]
26    [ assign-test email_example ]
27    [ assign-test my_vector_example ]
28    [ assign-test multi_index_container ]     
29    ;
30
31
Note: See TracBrowser for help on using the repository browser.