]> git.proxmox.com Git - ceph.git/blob - ceph/src/boost/libs/any/test/Jamfile.v2
bump version to 18.2.4-pve3
[ceph.git] / ceph / src / boost / libs / any / test / Jamfile.v2
1 # Copyright Vladimir Prus 2005. Use, modification and
2 # distribution is subject to the Boost Software License, Version
3 # 1.0. (See accompanying file LICENSE_1_0.txt or copy at
4 # http://www.boost.org/LICENSE_1_0.txt)
5 #
6 # For more information, see http://www.boost.org/libs/any
7 #
8
9 import testing ;
10
11 test-suite any :
12 [ run any_test.cpp ]
13 [ run any_test.cpp : : : <rtti>off <define>BOOST_NO_RTTI <define>BOOST_NO_TYPEID : any_test_no_rtti ]
14 [ run any_test_rv.cpp ]
15 [ run any_test_rv.cpp : : : <rtti>off <define>BOOST_NO_RTTI <define>BOOST_NO_TYPEID : any_test_rv_no_rtti ]
16 [ run any_test_mplif.cpp ]
17 [ compile-fail any_cast_cv_failed.cpp ]
18 [ compile-fail any_test_temporary_to_ref_failed.cpp ]
19 [ compile-fail any_test_cv_to_rv_failed.cpp ]
20 [ run basic_any_test.cpp ]
21 [ run basic_any_test.cpp : : : <rtti>off <define>BOOST_NO_RTTI <define>BOOST_NO_TYPEID : basic_any_test_no_rtti ]
22 [ run basic_any_test_rv.cpp ]
23 [ run basic_any_test_rv.cpp : : : <rtti>off <define>BOOST_NO_RTTI <define>BOOST_NO_TYPEID : basic_any_test_rv_no_rtti ]
24 [ run basic_any_test_mplif.cpp ]
25 [ run basic_any_test_large_object.cpp ]
26 [ run basic_any_test_small_object.cpp ]
27 [ compile-fail basic_any_cast_cv_failed.cpp ]
28 [ compile-fail basic_any_test_alignment_power_of_two_failed.cpp ]
29 [ compile-fail basic_any_test_cv_to_rv_failed.cpp ]
30 [ compile-fail basic_any_test_multiply_size_failed.cpp ]
31 [ compile-fail basic_any_test_size_alignment_zero_failed.cpp ]
32 [ compile-fail basic_any_test_size_less_alignment_failed.cpp ]
33 [ compile-fail basic_any_test_temporary_to_ref_failed.cpp ]
34
35 [ compile-fail any_from_basic_any.cpp ]
36 [ compile-fail any_to_basic_any.cpp ]
37 [ compile-fail basic_any_from_any.cpp ]
38 [ compile-fail basic_any_to_any.cpp ]
39 [ compile-fail any_from_basic_any_rv.cpp ]
40 [ compile-fail any_to_basic_any_rv.cpp ]
41 [ compile-fail basic_any_from_any_rv.cpp ]
42 [ compile-fail basic_any_to_any_rv.cpp ]
43
44 [ compile-fail basic_any_from_basic_any.cpp ]
45 [ compile-fail basic_any_to_basic_any.cpp ]
46 [ compile-fail basic_any_from_basic_any_rv.cpp ]
47 [ compile-fail basic_any_to_basic_any_rv.cpp ]
48 ;
49
50