/Src/Dependencies/Boost/libs/function/test/Jamfile.v2

http://hadesmem.googlecode.com/ · text · 67 lines · 39 code · 28 blank · 0 comment · 0 complexity · 3bb826765c8f0859cb1b41f9b1f734c0 MD5 · raw file

  1. # Function library
  2. # Copyright Douglas Gregor 2001-2003. Use, modification and
  3. # distribution is subject to the Boost Software License, Version
  4. # 1.0. (See accompanying file LICENSE_1_0.txt or copy at
  5. # http://www.boost.org/LICENSE_1_0.txt)
  6. # For more information, see http://www.boost.org/
  7. project
  8. : requirements <toolset>msvc:<asynch-exceptions>on
  9. : source-location $(BOOST_ROOT)
  10. ;
  11. # bring in rules for testing
  12. import testing ;
  13. {
  14. test-suite function
  15. :
  16. [ run libs/function/test/function_test.cpp : : : : lib_function_test ]
  17. [ run libs/function/test/function_n_test.cpp : : : : ]
  18. [ run libs/function/test/allocator_test.cpp ../../../libs/test/build//boost_test_exec_monitor : : : : ]
  19. [ run libs/function/test/stateless_test.cpp ../../../libs/test/build//boost_test_exec_monitor : : : : ]
  20. [ run libs/function/test/lambda_test.cpp ../../../libs/test/build//boost_test_exec_monitor : : : : ]
  21. [ compile-fail libs/function/test/function_test_fail1.cpp : : : : ]
  22. [ compile-fail libs/function/test/function_test_fail2.cpp : : : : ]
  23. [ compile libs/function/test/function_30.cpp : : : : ]
  24. [ run libs/function/test/function_arith_cxx98.cpp : : : : ]
  25. [ run libs/function/test/function_arith_portable.cpp : : : : ]
  26. [ run libs/function/test/sum_avg_cxx98.cpp : : : : ]
  27. [ run libs/function/test/sum_avg_portable.cpp : : : : ]
  28. [ run libs/function/test/mem_fun_cxx98.cpp : : : : ]
  29. [ run libs/function/test/mem_fun_portable.cpp : : : : ]
  30. [ run libs/function/test/std_bind_cxx98.cpp : : : : ]
  31. [ run libs/function/test/std_bind_portable.cpp : : : : ]
  32. [ run libs/function/test/function_ref_cxx98.cpp : : : : ]
  33. [ run libs/function/test/function_ref_portable.cpp : : : : ]
  34. [ run libs/function/test/contains_test.cpp : : : : ]
  35. [ run libs/function/test/contains2_test.cpp : : : : ]
  36. [ run libs/function/test/nothrow_swap.cpp : : : : ]
  37. [ compile libs/function/test/function_typeof_test.cpp ]
  38. ;
  39. }