• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# Lambda library
2
3# Copyright (C) 2001-2003 Jaakko J�rvi
4
5# Use, modification and distribution is subject to the Boost Software License,
6# Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
7# http://www.boost.org/LICENSE_1_0.txt)
8
9# For more information, see http://www.boost.org/
10
11import testing ;
12
13project
14  : requirements <toolset>msvc:<asynch-exceptions>on
15  ;
16
17test-suite lambda
18  : [ run algorithm_test.cpp ]
19    [ run bind_tests_simple.cpp ]
20    [ run bind_tests_advanced.cpp ]
21    [ run bind_tests_simple_f_refs.cpp ]
22    [ run bll_and_function.cpp ]
23    [ run cast_test.cpp : : : : lambda_cast_test ]
24    [ run constructor_tests.cpp ]
25    [ run control_structures.cpp ]
26    [ run exception_test.cpp ]
27    [ run extending_rt_traits.cpp ]
28    [ run is_instance_of_test.cpp ]
29    [ run member_pointer_test.cpp ]
30    [ run operator_tests_simple.cpp ]
31    [ run phoenix_control_structures.cpp ]
32    [ run switch_construct.cpp ]
33    [ run result_of_tests.cpp ]
34    [ run ret_test.cpp ]
35  ;
36