]> git.proxmox.com Git - ceph.git/blob - ceph/src/boost/libs/ptr_container/test/Jamfile.v2
update sources to v12.2.3
[ceph.git] / ceph / src / boost / libs / ptr_container / test / Jamfile.v2
1 #//
2 #// Boost.Pointer Container
3 #//
4 #// Copyright Thorsten Ottosen 2003-2008. Use, modification and
5 #// distribution is subject to the Boost Software License, Version
6 #// 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/libs/ptr_container/
10 #//
11
12 import testing ;
13
14 rule sc-test ( name : extra-sources * )
15 {
16 return [
17 run $(name).cpp /boost/test//boost_unit_test_framework/<link>static $(extra-sources) ]
18 ;
19 }
20
21
22 test-suite ptr_container :
23 [ sc-test ptr_inserter ]
24 [ sc-test ptr_vector ]
25 [ sc-test ptr_list ]
26 [ sc-test ptr_deque ]
27 [ sc-test ptr_set ]
28 [ sc-test ptr_map ]
29 [ sc-test ptr_map_adapter ]
30 [ sc-test ptr_array ]
31 [ sc-test tree_test ]
32 [ sc-test incomplete_type_test ]
33 [ run view_example.cpp ]
34 [ sc-test iterator_test ]
35 [ run tut1.cpp ]
36 [ sc-test indirect_fun ]
37 [ sc-test serialization : /boost/serialization//boost_serialization ]
38 [ sc-test no_exceptions ]
39
40 [ sc-test ptr_unordered_set ]
41 [ sc-test ptr_unordered_map ]
42 [ sc-test ptr_circular_buffer ]
43 [ compile const_element_containers.cpp ]
44 # [ sc-test null_filter_iterator ]
45
46 ;