Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: downloads/boost_1_33_1/libs/function/test/Jamfile @ 12

Last change on this file since 12 was 12, checked in by landauf, 17 years ago

added boost

File size: 1.9 KB
Line 
1# Function library
2
3# Copyright (C) 2001-2003 Douglas Gregor
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# Testing Jamfile autogenerated from XML source
13subproject libs/function/test ;
14
15# bring in rules for testing
16SEARCH on testing.jam = $(BOOST_BUILD_PATH) ;
17include testing.jam ;
18
19# Make tests run by default.
20DEPENDS all : test ;
21
22{
23  # look in BOOST_ROOT for sources first, just in this Jamfile
24  local SEARCH_SOURCE = $(BOOST_ROOT) $(SEARCH_SOURCE) ;
25
26  test-suite function
27    :
28  [ run libs/function/test/function_test.cpp :  :  :  : lib_function_test ]
29
30  [ run libs/function/test/function_n_test.cpp :  :  :  :  ]
31
32  [ run libs/function/test/allocator_test.cpp :  :  :  :  ]
33
34  [ run libs/function/test/stateless_test.cpp :  :  :  :  ]
35
36  [ run libs/function/test/lambda_test.cpp :  :  :  :  ]
37
38  [ compile-fail libs/function/test/function_test_fail1.cpp :  :  :  :  ]
39
40  [ compile-fail libs/function/test/function_test_fail2.cpp :  :  :  :  ]
41
42  [ compile libs/function/test/function_30.cpp :  :  :  :  ]
43
44  [ run libs/function/test/function_arith_cxx98.cpp :  :  :  :  ]
45
46  [ run libs/function/test/function_arith_portable.cpp :  :  :  :  ]
47
48  [ run libs/function/test/sum_avg_cxx98.cpp :  :  :  :  ]
49
50  [ run libs/function/test/sum_avg_portable.cpp :  :  :  :  ]
51
52  [ run libs/function/test/mem_fun_cxx98.cpp :  :  :  :  ]
53
54  [ run libs/function/test/mem_fun_portable.cpp :  :  :  :  ]
55
56  [ run libs/function/test/std_bind_cxx98.cpp :  :  :  :  ]
57
58  [ run libs/function/test/std_bind_portable.cpp :  :  :  :  ]
59
60  [ run libs/function/test/function_ref_cxx98.cpp :  :  :  :  ]
61
62  [ run libs/function/test/function_ref_portable.cpp :  :  :  :  ]
63
64  [ run libs/function/test/contains_test.cpp : : : : ]
65
66  [ run libs/function/test/contains2_test.cpp : : : : ]
67 ;
68}
Note: See TracBrowser for help on using the repository browser.