Apply patch for [CVE-2012-2677][boost] ordered_malloc() overflow
[external/boost.git] / libs / smart_ptr / test / Jamfile.v2
1 #  Boost.SmartPtr Library test Jamfile
2 #
3 #  Copyright (c) 2003-2007 Peter Dimov
4 #  Copyright (c) 2003 Dave Abrahams
5 #
6 #  Distributed under the Boost Software License, Version 1.0. (See
7 #  accompanying file LICENSE_1_0.txt or copy at
8 #  http://www.boost.org/LICENSE_1_0.txt)
9
10 # bring in rules for testing
11 import testing ;
12
13 {
14     test-suite "smart_ptr"
15         : [ run smart_ptr_test.cpp ]
16           [ run shared_ptr_basic_test.cpp : : : <toolset>gcc:<cxxflags>-Wno-non-virtual-dtor ]
17           [ run shared_ptr_test.cpp : : : <toolset>gcc:<cxxflags>-Wno-non-virtual-dtor ]
18           [ run weak_ptr_test.cpp ]
19           [ run weak_ptr_move_test.cpp ]
20           [ run shared_from_this_test.cpp : : : <toolset>gcc:<cxxflags>-Wno-non-virtual-dtor ]
21           [ run get_deleter_test.cpp ]
22           [ run intrusive_ptr_test.cpp ]
23           [ run intrusive_ptr_move_test.cpp ]
24           [ run atomic_count_test.cpp ]
25           [ run lw_mutex_test.cpp ]
26           [ compile-fail shared_ptr_assign_fail.cpp ]
27           [ compile-fail shared_ptr_delete_fail.cpp ]
28           [ compile-fail shared_ptr_compare_fail.cpp ]
29           [ run shared_ptr_alloc2_test.cpp ]
30           [ run pointer_cast_test.cpp ]
31           [ compile pointer_to_other_test.cpp ]
32           [ run auto_ptr_rv_test.cpp ]
33           [ run shared_ptr_alias_test.cpp ]
34           [ run shared_ptr_rv_test.cpp ]
35           [ run shared_ptr_move_test.cpp ]
36           [ compile-fail shared_ptr_pv_fail.cpp ]
37           [ run sp_unary_addr_test.cpp ]
38           [ compile-fail scoped_ptr_eq_fail.cpp ]
39           [ compile-fail scoped_array_eq_fail.cpp ]
40           [ run esft_regtest.cpp ]
41           [ run yield_k_test.cpp ]
42           [ run yield_k_test.cpp : : : <threading>multi : yield_k_test.mt ]
43           [ run spinlock_test.cpp ]
44           [ run spinlock_try_test.cpp ]
45           [ run spinlock_try_test.cpp : : : <threading>multi : spinlock_try_test.mt ]
46           [ run spinlock_pool_test.cpp ]
47           [ run make_shared_test.cpp ]
48           [ run make_shared_perfect_forwarding_test.cpp ]
49           [ run sp_convertible_test.cpp ]
50           [ run wp_convertible_test.cpp ]
51           [ run ip_convertible_test.cpp ]
52           [ run allocate_shared_test.cpp ]
53           [ run sp_atomic_test.cpp ]
54           [ run esft_void_test.cpp ]
55           [ run esft_second_ptr_test.cpp ]
56           [ run make_shared_esft_test.cpp ]
57           [ run allocate_shared_esft_test.cpp ]
58           [ run sp_recursive_assign_test.cpp ]
59           [ run sp_recursive_assign2_test.cpp ]
60           [ run sp_recursive_assign_rv_test.cpp ]
61           [ run sp_recursive_assign2_rv_test.cpp ]
62           [ run esft_constructor_test.cpp ]
63           [ compile-fail auto_ptr_lv_fail.cpp ]
64           [ run atomic_count_test2.cpp ]
65           [ run sp_typeinfo_test.cpp ]
66           [ compile make_shared_fp_test.cpp ]
67         ;
68 }