Jeff Thompson | a28eed8 | 2013-08-22 16:21:10 -0700 | [diff] [blame] | 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_n_test.cpp : : : : ] |
| 25 | |
| 26 | [ run libs/function/test/allocator_test.cpp ../../../libs/test/build//ndnboost_test_exec_monitor : : : : ] |
| 27 | |
| 28 | [ run libs/function/test/stateless_test.cpp ../../../libs/test/build//ndnboost_test_exec_monitor : : : : ] |
| 29 | |
| 30 | [ run libs/function/test/lambda_test.cpp ../../../libs/test/build//ndnboost_test_exec_monitor : : : : ] |
| 31 | |
| 32 | [ compile-fail libs/function/test/function_test_fail1.cpp : : : : ] |
| 33 | |
| 34 | [ compile-fail libs/function/test/function_test_fail2.cpp : : : : ] |
| 35 | |
| 36 | [ compile libs/function/test/function_30.cpp : : : : ] |
| 37 | |
| 38 | [ run libs/function/test/function_arith_cxx98.cpp : : : : ] |
| 39 | |
| 40 | [ run libs/function/test/function_arith_portable.cpp : : : : ] |
| 41 | |
| 42 | [ run libs/function/test/sum_avg_cxx98.cpp : : : : ] |
| 43 | |
| 44 | [ run libs/function/test/sum_avg_portable.cpp : : : : ] |
| 45 | |
| 46 | [ run libs/function/test/mem_fun_cxx98.cpp : : : : ] |
| 47 | |
| 48 | [ run libs/function/test/mem_fun_portable.cpp : : : : ] |
| 49 | |
| 50 | [ run libs/function/test/std_bind_cxx98.cpp : : : : ] |
| 51 | |
| 52 | [ run libs/function/test/std_bind_portable.cpp : : : : ] |
| 53 | |
| 54 | [ run libs/function/test/function_ref_cxx98.cpp : : : : ] |
| 55 | |
| 56 | [ run libs/function/test/function_ref_portable.cpp : : : : ] |
| 57 | |
| 58 | [ run libs/function/test/contains_test.cpp : : : : ] |
| 59 | |
| 60 | [ run libs/function/test/contains2_test.cpp : : : : ] |
| 61 | |
| 62 | [ run libs/function/test/nothrow_swap.cpp : : : : ] |
| 63 | |
| 64 | [ compile libs/function/test/function_typeof_test.cpp ] |
| 65 | ; |
| 66 | } |
| 67 | |