Jamfile 1.0 KB

1234567891011121314151617181920212223242526272829303132333435
  1. # Lambda library
  2. # Copyright (C) 2001-2003 Jaakko Järvi
  3. # Use, modification and distribution is subject to the Boost Software License,
  4. # Version 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. import testing ;
  8. project
  9. : requirements <toolset>msvc:<asynch-exceptions>on
  10. ;
  11. test-suite lambda
  12. : [ run algorithm_test.cpp ]
  13. [ run bind_tests_simple.cpp ]
  14. [ run bind_tests_advanced.cpp ]
  15. [ run bind_tests_simple_f_refs.cpp ]
  16. [ run bll_and_function.cpp ]
  17. [ run cast_test.cpp : : : : lambda_cast_test ]
  18. [ run constructor_tests.cpp ]
  19. [ run control_structures.cpp ]
  20. [ run exception_test.cpp ]
  21. [ run extending_rt_traits.cpp ]
  22. [ run is_instance_of_test.cpp ]
  23. [ run member_pointer_test.cpp ]
  24. [ run operator_tests_simple.cpp ]
  25. [ run phoenix_control_structures.cpp ]
  26. [ run switch_construct.cpp ]
  27. [ run result_of_tests.cpp ]
  28. [ run ret_test.cpp ]
  29. ;