Imported Upstream version 1.64.0
[platform/upstream/boost.git] / libs / function / test / Jamfile.v2
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
10 project
11     : requirements <toolset>msvc:<asynch-exceptions>on
12     : source-location $(BOOST_ROOT)
13     ;
14
15 # bring in rules for testing
16 import testing ;
17
18 {
19
20   test-suite function
21     : 
22   [ run libs/function/test/function_test.cpp :  :  :  : lib_function_test ]
23
24   [ run libs/function/test/function_test.cpp :  :  : <rtti>off : lib_function_test_no_rtti ]
25
26   [ run libs/function/test/function_n_test.cpp :  :  :  :  ]
27
28   [ run libs/function/test/allocator_test.cpp ../../../libs/test/build//boost_test_exec_monitor :  :  :  :  ]
29
30   [ run libs/function/test/stateless_test.cpp ../../../libs/test/build//boost_test_exec_monitor :  :  :  :  ]
31
32   [ run libs/function/test/lambda_test.cpp ../../../libs/test/build//boost_test_exec_monitor :  :  :  :  ]
33
34   [ compile-fail libs/function/test/function_test_fail1.cpp :  :  :  :  ]
35
36   [ compile-fail libs/function/test/function_test_fail2.cpp :  :  :  :  ]
37
38   [ compile libs/function/test/function_30.cpp :  :  :  :  ] 
39
40   [ run libs/function/test/function_arith_cxx98.cpp :  :  :  :  ]
41
42   [ run libs/function/test/function_arith_portable.cpp :  :  :  :  ]
43
44   [ run libs/function/test/sum_avg_cxx98.cpp :  :  :  :  ]
45
46   [ run libs/function/test/sum_avg_portable.cpp :  :  :  :  ]
47
48   [ run libs/function/test/mem_fun_cxx98.cpp :  :  :  :  ]
49
50   [ run libs/function/test/mem_fun_portable.cpp :  :  :  :  ]
51
52   [ run libs/function/test/std_bind_cxx98.cpp :  :  :  :  ]
53
54   [ run libs/function/test/std_bind_portable.cpp :  :  :  :  ]
55
56   [ run libs/function/test/function_ref_cxx98.cpp :  :  :  :  ]
57
58   [ run libs/function/test/function_ref_portable.cpp :  :  :  :  ]
59   
60   [ run libs/function/test/contains_test.cpp : : : : ]
61    
62   [ run libs/function/test/contains2_test.cpp : : : : ]
63    
64   [ run libs/function/test/nothrow_swap.cpp :  :  :  :  ]
65
66   [ run libs/function/test/rvalues_test.cpp :  :  :  :  ]
67
68   [ compile libs/function/test/function_typeof_test.cpp ]
69
70   [ run libs/function/test/result_arg_types_test.cpp ]
71  ;
72 }
73