From 5314836215c7cdafceecc5c71492784101cfd126 Mon Sep 17 00:00:00 2001 From: Vladimir Prus Date: Mon, 29 Sep 2003 16:09:15 +0000 Subject: [PATCH] Add V2 Jamfile [SVN r20210] --- test/Jamfile.v2 | 63 +++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 63 insertions(+) create mode 100644 test/Jamfile.v2 diff --git a/test/Jamfile.v2 b/test/Jamfile.v2 new file mode 100644 index 0000000..9335276 --- /dev/null +++ b/test/Jamfile.v2 @@ -0,0 +1,63 @@ +# Function library + +# Copyright (C) 2001-2003 Douglas Gregor + +# Permission to copy, use, sell and distribute this software is granted +# provided this copyright notice appears in all copies. Permission to modify +# the code and to distribute modified code is granted provided this copyright +# notice appears in all copies, and a notice that the code was modified is +# included with the copyright notice. This software is provided "as is" +# without express or implied warranty, and with no claim as to its suitability +# for any purpose. + +# 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 : : : : ] + ; +} + \ No newline at end of file