Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: downloads/boost_1_33_1/libs/function/test/Jamfile.v2 @ 12

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

added boost

File size: 1.8 KB
Line 
1# Function library
2
3# Copyright Douglas Gregor 2001-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# For more information, see http://www.boost.org/
9
10project
11    : source-location $(BOOST_ROOT)
12    ;
13
14# bring in rules for testing
15import testing ;
16
17{
18
19  test-suite function
20    :
21  [ run libs/function/test/function_test.cpp :  :  :  : lib_function_test ]
22
23  [ run libs/function/test/function_n_test.cpp :  :  :  :  ]
24
25  [ run libs/function/test/allocator_test.cpp ../../../libs/test/build//boost_test_exec_monitor :  :  :  :  ]
26
27  [ run libs/function/test/stateless_test.cpp ../../../libs/test/build//boost_test_exec_monitor :  :  :  :  ]
28
29  [ run libs/function/test/lambda_test.cpp ../../../libs/test/build//boost_test_exec_monitor :  :  :  :  ]
30
31  [ compile-fail libs/function/test/function_test_fail1.cpp :  :  :  :  ]
32
33  [ compile-fail libs/function/test/function_test_fail2.cpp :  :  :  :  ]
34
35  [ compile libs/function/test/function_30.cpp :  :  :  :  ]
36
37  [ run libs/function/test/function_arith_cxx98.cpp :  :  :  :  ]
38
39  [ run libs/function/test/function_arith_portable.cpp :  :  :  :  ]
40
41  [ run libs/function/test/sum_avg_cxx98.cpp :  :  :  :  ]
42
43  [ run libs/function/test/sum_avg_portable.cpp :  :  :  :  ]
44
45  [ run libs/function/test/mem_fun_cxx98.cpp :  :  :  :  ]
46
47  [ run libs/function/test/mem_fun_portable.cpp :  :  :  :  ]
48
49  [ run libs/function/test/std_bind_cxx98.cpp :  :  :  :  ]
50
51  [ run libs/function/test/std_bind_portable.cpp :  :  :  :  ]
52
53  [ run libs/function/test/function_ref_cxx98.cpp :  :  :  :  ]
54
55  [ run libs/function/test/function_ref_portable.cpp :  :  :  :  ]
56 
57  [ run libs/function/test/contains_test.cpp : : : : ]
58   
59  [ run libs/function/test/contains2_test.cpp : : : : ]
60   
61 ;
62}
63     
Note: See TracBrowser for help on using the repository browser.