2003-02-14 18:05:26 +00:00
|
|
|
# Function library
|
|
|
|
|
|
|
|
# Copyright (C) 2001-2003 Douglas Gregor
|
|
|
|
|
2003-10-01 04:10:37 +00:00
|
|
|
# Use, modification and 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-02-14 18:05:26 +00:00
|
|
|
|
|
|
|
# For more information, see http://www.boost.org/
|
|
|
|
|
2003-01-18 15:07:06 +00:00
|
|
|
|
|
|
|
# Testing Jamfile autogenerated from XML source
|
|
|
|
subproject libs/function/test ;
|
|
|
|
|
|
|
|
# bring in rules for testing
|
2003-10-01 04:10:37 +00:00
|
|
|
SEARCH on testing.jam = $(BOOST_BUILD_PATH) ;
|
|
|
|
include testing.jam ;
|
2003-01-18 15:07:06 +00:00
|
|
|
|
|
|
|
# Make tests run by default.
|
|
|
|
DEPENDS all : test ;
|
|
|
|
|
|
|
|
{
|
|
|
|
# look in BOOST_ROOT for sources first, just in this Jamfile
|
|
|
|
local SEARCH_SOURCE = $(BOOST_ROOT) $(SEARCH_SOURCE) ;
|
|
|
|
|
|
|
|
test-suite function
|
|
|
|
:
|
2003-02-14 18:15:01 +00:00
|
|
|
[ run libs/function/test/function_test.cpp : : : : lib_function_test ]
|
2003-01-18 15:07:06 +00:00
|
|
|
|
2003-02-14 18:15:01 +00:00
|
|
|
[ run libs/function/test/function_n_test.cpp : : : : ]
|
2003-01-18 15:07:06 +00:00
|
|
|
|
2003-11-23 16:17:24 +00:00
|
|
|
[ run libs/function/test/allocator_test.cpp : : : : ]
|
2003-01-18 15:07:06 +00:00
|
|
|
|
2003-11-23 16:17:24 +00:00
|
|
|
[ run libs/function/test/stateless_test.cpp : : : : ]
|
2003-01-18 15:07:06 +00:00
|
|
|
|
2003-11-23 16:17:24 +00:00
|
|
|
[ run libs/function/test/lambda_test.cpp : : : : ]
|
2003-01-18 15:07:06 +00:00
|
|
|
|
2003-02-14 18:15:01 +00:00
|
|
|
[ compile-fail libs/function/test/function_test_fail1.cpp : : : : ]
|
2003-01-18 15:07:06 +00:00
|
|
|
|
2003-02-14 18:15:01 +00:00
|
|
|
[ compile-fail libs/function/test/function_test_fail2.cpp : : : : ]
|
2003-01-18 15:07:06 +00:00
|
|
|
|
2003-02-14 18:15:01 +00:00
|
|
|
[ compile libs/function/test/function_30.cpp : : : : ]
|
2003-01-18 15:07:06 +00:00
|
|
|
|
2003-02-14 18:15:01 +00:00
|
|
|
[ run libs/function/test/function_arith_cxx98.cpp : : : : ]
|
2003-01-18 15:07:06 +00:00
|
|
|
|
2003-02-14 18:15:01 +00:00
|
|
|
[ run libs/function/test/function_arith_portable.cpp : : : : ]
|
2003-01-18 15:07:06 +00:00
|
|
|
|
2003-02-14 18:15:01 +00:00
|
|
|
[ run libs/function/test/sum_avg_cxx98.cpp : : : : ]
|
2003-01-18 15:07:06 +00:00
|
|
|
|
2003-02-14 18:15:01 +00:00
|
|
|
[ run libs/function/test/sum_avg_portable.cpp : : : : ]
|
2003-01-18 15:07:06 +00:00
|
|
|
|
2003-02-14 18:15:01 +00:00
|
|
|
[ run libs/function/test/mem_fun_cxx98.cpp : : : : ]
|
2003-01-18 15:07:06 +00:00
|
|
|
|
2003-02-14 18:15:01 +00:00
|
|
|
[ run libs/function/test/mem_fun_portable.cpp : : : : ]
|
2003-01-18 15:07:06 +00:00
|
|
|
|
2003-02-14 18:15:01 +00:00
|
|
|
[ run libs/function/test/std_bind_cxx98.cpp : : : : ]
|
2003-01-18 15:07:06 +00:00
|
|
|
|
2003-02-14 18:15:01 +00:00
|
|
|
[ run libs/function/test/std_bind_portable.cpp : : : : ]
|
2003-01-18 15:07:06 +00:00
|
|
|
|
2003-02-14 18:15:01 +00:00
|
|
|
[ run libs/function/test/function_ref_cxx98.cpp : : : : ]
|
2003-01-18 15:07:06 +00:00
|
|
|
|
2003-02-14 18:15:01 +00:00
|
|
|
[ run libs/function/test/function_ref_portable.cpp : : : : ]
|
2004-01-20 18:02:02 +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-01-18 15:07:06 +00:00
|
|
|
;
|
|
|
|
}
|