| 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 | |
|---|
| 11 | |
|---|
| 12 | subproject libs/lambda/test ; |
|---|
| 13 | |
|---|
| 14 | # bring in rules for testing |
|---|
| 15 | SEARCH on testing.jam = $(BOOST_BUILD_PATH) ; |
|---|
| 16 | include testing.jam ; |
|---|
| 17 | |
|---|
| 18 | # Make tests run by default. |
|---|
| 19 | DEPENDS all : test ; |
|---|
| 20 | |
|---|
| 21 | { |
|---|
| 22 | # look in BOOST_ROOT for sources first, just in this Jamfile |
|---|
| 23 | local SEARCH_SOURCE = $(BOOST_ROOT) $(SEARCH_SOURCE) ; |
|---|
| 24 | |
|---|
| 25 | test-suite lambda |
|---|
| 26 | : |
|---|
| 27 | [ run libs/lambda/test/algorithm_test.cpp : : : : ] |
|---|
| 28 | |
|---|
| 29 | [ run libs/lambda/test/bind_tests_simple.cpp : : : : ] |
|---|
| 30 | |
|---|
| 31 | [ run libs/lambda/test/bind_tests_advanced.cpp : : : : ] |
|---|
| 32 | |
|---|
| 33 | [ run libs/lambda/test/bind_tests_simple_f_refs.cpp : : : : ] |
|---|
| 34 | |
|---|
| 35 | [ run libs/lambda/test/bll_and_function.cpp : : : : ] |
|---|
| 36 | |
|---|
| 37 | [ run libs/lambda/test/cast_test.cpp : : : : ] |
|---|
| 38 | |
|---|
| 39 | [ run libs/lambda/test/constructor_tests.cpp : : : : ] |
|---|
| 40 | |
|---|
| 41 | [ run libs/lambda/test/control_structures.cpp : : : : ] |
|---|
| 42 | |
|---|
| 43 | [ run libs/lambda/test/exception_test.cpp : : : : ] |
|---|
| 44 | |
|---|
| 45 | [ run libs/lambda/test/extending_rt_traits.cpp : : : : ] |
|---|
| 46 | |
|---|
| 47 | [ run libs/lambda/test/is_instance_of_test.cpp : : : : ] |
|---|
| 48 | |
|---|
| 49 | [ run libs/lambda/test/member_pointer_test.cpp : : : : ] |
|---|
| 50 | |
|---|
| 51 | [ run libs/lambda/test/operator_tests_simple.cpp : : : : ] |
|---|
| 52 | |
|---|
| 53 | [ run libs/lambda/test/phoenix_control_structures.cpp : : : : ] |
|---|
| 54 | |
|---|
| 55 | [ run libs/lambda/test/switch_construct.cpp : : : : ] |
|---|
| 56 | ; |
|---|
| 57 | |
|---|
| 58 | } |
|---|
| 59 | |
|---|