Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: downloads/boost_1_33_1/libs/algorithm/string/test/Jamfile @ 20

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

added boost

File size: 1.9 KB
Line 
1#  Boost string_algo library test suite Jamfile  ----------------------------
2#
3#  Copyright Pavol Droba 2002-2003. 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#  See http://www.boost.org for updates, documentation, and revision history.
9
10subproject libs/algorithm/string/test ;
11
12# bring in rules for testing
13import testing ;
14
15# Make tests run by default.
16DEPENDS all : test ;
17
18{
19    test-suite algorithm/string
20        : [ run
21                trim_test.cpp
22              : :
23                :
24                std::locale-support
25                std::facet-support
26                : trim
27            ]
28          [ run
29                conv_test.cpp
30              : :
31                :
32                std::locale-support
33                std::facet-support
34                : conv
35            ]
36          [ run
37                predicate_test.cpp
38              : :
39                :
40                std::locale-support
41                std::facet-support
42                : predicate
43            ]
44          [ run
45                find_test.cpp
46              : :
47                :
48                std::locale-support
49                std::facet-support
50                : find
51            ]
52          [ run
53                split_test.cpp
54              : :
55                :
56                std::locale-support
57                std::facet-support
58                : split
59            ]
60          [ run
61                replace_test.cpp
62              : :
63                :
64                std::locale-support
65                std::facet-support
66                : replace
67            ]
68          [ run
69                regex_test.cpp
70                <lib>../../../regex/build/boost_regex
71              : :
72                :   
73                : regex
74            ]
75        ;
76}
77
Note: See TracBrowser for help on using the repository browser.