Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: downloads/boost_1_33_1/libs/range/test/Jamfile @ 12

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

added boost

  • Property svn:executable set to *
File size: 1.0 KB
Line 
1# Boost.Range library
2#
3#  Copyright Thorsten Ottosen 2003-2004. 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/range/
9#
10
11subproject libs/range/test ;
12
13import testing ;
14
15rule range-test ( name : includes * )
16{
17    return [
18        run $(name).cpp
19        <lib>../../test/build/boost_unit_test_framework
20        :
21        :
22        : <include>$(BOOST_ROOT)
23          $(includes)
24        ] ;
25}
26
27test-suite range :
28    [ range-test array ]
29    [ range-test iterator_pair ]
30    [ range-test std_container ]
31    [ range-test string ]
32    [ range-test iterator_range ]
33    [ range-test sub_range ]
34    [ range-test partial_workaround ]
35    [ range-test algorithm_example ]
36    [ range-test reversible_range ]
37    [ range-test const_ranges ]
38    [ range-test extension_mechanism ]
39#    [ range-test mfc : <include>$(VC71_ROOT)/atlmfc/include ]
40    ;
41
Note: See TracBrowser for help on using the repository browser.