Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: downloads/boost_1_34_1/libs/xpressive/test/Jamfile.v2 @ 33

Last change on this file since 33 was 29, checked in by landauf, 16 years ago

updated boost from 1_33_1 to 1_34_1

File size: 1.8 KB
Line 
1# (C) Copyright 2004: Eric Niebler
2# Distributed under the Boost Software License, Version 1.0.
3# (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
4
5# bring in rules for testing
6import testing ;
7
8project
9  : requirements
10        <toolset>intel:<debug-symbols>off
11        <toolset>msvc,<stdlib>stlport:<define>_STLP_EXPOSE_GLOBALS_IMPLEMENTATION
12  ;
13
14test-suite "xpressive"
15       : [ run regress.cpp ]
16         [ run c_traits.cpp ]
17         [ run test1.cpp ]
18         [ run test2.cpp ]
19         [ run test3.cpp ]
20         [ run test4.cpp ]
21         [ run test5.cpp ]
22         [ run test6.cpp ]
23         [ run test7.cpp ]
24         [ run test8.cpp ]
25         [ run test9.cpp ]
26         [ run test10.cpp ]
27         [ run test11.cpp ]
28         [ run test1u.cpp ]
29         [ run test2u.cpp ]
30         [ run test3u.cpp ]
31         [ run test4u.cpp ]
32         [ run test5u.cpp ]
33         [ run test6u.cpp ]
34         [ run test7u.cpp ]
35         [ run test8u.cpp ]
36         [ run test9u.cpp ]
37         [ run test10u.cpp ]
38         [ run test11u.cpp ]
39         [ run misc1.cpp ]
40         [ run misc2.cpp ]
41         [ run test_cycles.cpp ]
42         [ run test_non_char.cpp ]
43         [ run test_static.cpp ]
44         [ run test_dynamic.cpp ]
45         [ link multiple_defs1.cpp multiple_defs2.cpp : : multiple_defs ]
46         [ compile test_basic_regex.cpp ]
47         [ compile test_match_results.cpp ]
48         [ compile test_regex_algorithms.cpp ]
49         [ compile test_regex_compiler.cpp ]
50         [ compile test_regex_constants.cpp ]
51         [ compile test_regex_error.cpp ]
52         [ compile test_regex_iterator.cpp ]
53         [ compile test_regex_primitives.cpp ]
54         [ compile test_regex_token_iterator.cpp ]
55         [ compile test_regex_traits.cpp ]
56         [ compile test_sub_match.cpp ]
57    ;
Note: See TracBrowser for help on using the repository browser.