2003-09-29 16:09:15 +00:00
|
|
|
# Function library
|
|
|
|
|
2004-07-25 02:59:30 +00:00
|
|
|
# Copyright Douglas Gregor 2001-2003. Use, modification and
|
2003-10-01 04:10:37 +00:00
|
|
|
# distribution is subject to the Boost Software License, Version
|
|
|
|
# 1.0. (See accompanying file LICENSE_1_0.txt or copy at
|
|
|
|
# http://www.boost.org/LICENSE_1_0.txt)
|
2003-09-29 16:09:15 +00:00
|
|
|
|
|
|
|
# For more information, see http://www.boost.org/
|
|
|
|
|
|
|
|
project
|
|
|
|
: source-location $(BOOST_ROOT)
|
|
|
|
;
|
|
|
|
|
|
|
|
# bring in rules for testing
|
|
|
|
import testing ;
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
test-suite function
|
|
|
|
:
|
|
|
|
[ run libs/function/test/function_test.cpp : : : : lib_function_test ]
|
|
|
|
|
|
|
|
[ run libs/function/test/function_n_test.cpp : : : : ]
|
|
|
|
|
|
|
|
[ run libs/function/test/allocator_test.cpp ../../../libs/test/build//boost_test_exec_monitor : : : : ]
|
|
|
|
|
|
|
|
[ run libs/function/test/stateless_test.cpp ../../../libs/test/build//boost_test_exec_monitor : : : : ]
|
|
|
|
|
|
|
|
[ run libs/function/test/lambda_test.cpp ../../../libs/test/build//boost_test_exec_monitor : : : : ]
|
|
|
|
|
|
|
|
[ compile-fail libs/function/test/function_test_fail1.cpp : : : : ]
|
|
|
|
|
|
|
|
[ compile-fail libs/function/test/function_test_fail2.cpp : : : : ]
|
|
|
|
|
|
|
|
[ compile libs/function/test/function_30.cpp : : : : ]
|
|
|
|
|
|
|
|
[ run libs/function/test/function_arith_cxx98.cpp : : : : ]
|
|
|
|
|
|
|
|
[ run libs/function/test/function_arith_portable.cpp : : : : ]
|
|
|
|
|
|
|
|
[ run libs/function/test/sum_avg_cxx98.cpp : : : : ]
|
|
|
|
|
|
|
|
[ run libs/function/test/sum_avg_portable.cpp : : : : ]
|
|
|
|
|
|
|
|
[ run libs/function/test/mem_fun_cxx98.cpp : : : : ]
|
|
|
|
|
|
|
|
[ run libs/function/test/mem_fun_portable.cpp : : : : ]
|
|
|
|
|
|
|
|
[ run libs/function/test/std_bind_cxx98.cpp : : : : ]
|
|
|
|
|
|
|
|
[ run libs/function/test/std_bind_portable.cpp : : : : ]
|
|
|
|
|
|
|
|
[ run libs/function/test/function_ref_cxx98.cpp : : : : ]
|
|
|
|
|
|
|
|
[ run libs/function/test/function_ref_portable.cpp : : : : ]
|
2004-06-10 12:37:31 +00:00
|
|
|
|
|
|
|
[ run libs/function/test/contains_test.cpp : : : : ]
|
|
|
|
|
2005-03-17 12:48:40 +00:00
|
|
|
[ run libs/function/test/contains2_test.cpp : : : : ]
|
|
|
|
|
2003-09-29 16:09:15 +00:00
|
|
|
;
|
|
|
|
}
|
2004-07-25 02:59:30 +00:00
|
|
|
|