Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: downloads/boost_1_34_1/libs/algorithm/string/test/Jamfile.v2 @ 30

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

updated boost from 1_33_1 to 1_34_1

File size: 1.2 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
10import testing ;
11
12test-suite algorithm/string
13    : [ run
14            trim_test.cpp
15          : :
16            :
17            : trim
18        ]
19      [ run
20            conv_test.cpp
21          : :
22            :
23            : conv
24        ]
25      [ run
26            predicate_test.cpp
27          : :
28            :
29            : predicate
30        ]
31      [ run
32            find_test.cpp
33          : :
34            :
35            : find
36        ]
37      [ run
38            split_test.cpp
39          : :
40            :
41            : split
42        ]
43      [ run
44            join_test.cpp
45          : :
46            :
47            : join
48        ]
49      [ run
50            replace_test.cpp
51          : :
52            :
53            : replace
54        ]
55      [ run
56            regex_test.cpp
57            ../../../regex/build//boost_regex
58          : :
59            :   
60            : regex
61        ]
62    ;
63
Note: See TracBrowser for help on using the repository browser.