]> git.proxmox.com Git - ceph.git/blob - ceph/src/boost/libs/variant/test/Jamfile.v2
update sources to v12.2.3
[ceph.git] / ceph / src / boost / libs / variant / test / Jamfile.v2
1 # Boost.Variant Library test Jamfile
2 #
3 # Copyright (C) 2003, Eric Friedman, Itay Maman.
4 # Copyright (C) 2013, Antony Polukhin.
5 #
6 # Use, modification and distribution is subject to the Boost Software License,
7 # Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
8 # http://www.boost.org/LICENSE_1_0.txt)
9 #
10 project
11 : requirements
12 #<dependency>/boost/test//minimal
13 <toolset>msvc:<asynch-exceptions>on
14 ;
15 test-suite variant
16 :
17 [ run test1.cpp class_a.cpp : : : : variant_test1 ]
18 [ run test2.cpp : : : : variant_test2 ]
19 [ run test3.cpp : : : : variant_test3 ]
20 [ run test3.cpp : : : <rtti>off <define>BOOST_NO_RTTI <define>BOOST_NO_TYPEID : variant_test3_no_rtti ]
21 [ run test4.cpp class_a.cpp
22 : : : : variant_test4 ]
23 [ run test5.cpp : : : : variant_test5 ]
24 [ run test6.cpp : : : : variant_test6 ]
25 [ run test7.cpp : : : : variant_test7 ]
26 [ run test8.cpp : : : : variant_test8 ]
27 [ run test9.cpp : : : : variant_test9 ]
28 [ run recursive_variant_test.cpp ]
29 [ run variant_reference_test.cpp ]
30 [ run variant_comparison_test.cpp ]
31 [ run variant_visit_test.cpp ]
32 [ run variant_get_test.cpp ]
33 [ compile-fail variant_rvalue_get_with_ampersand_test.cpp ]
34 [ compile-fail no_rvalue_to_nonconst_visitation.cpp ]
35 [ run variant_polymorphic_get_test.cpp ]
36 [ run variant_multivisit_test.cpp ]
37 [ run hash_variant_test.cpp ]
38 [ run rvalue_test.cpp ]
39 [ run variant_nonempty_check.cpp ]
40 [ run recursive_variant_test.cpp : : : <define>BOOST_NO_EXCEPTIONS
41 <toolset>gcc-4.3:<cxxflags>-fno-exceptions
42 <toolset>gcc-4.4:<cxxflags>-fno-exceptions
43 <toolset>gcc-4.5:<cxxflags>-fno-exceptions
44 <toolset>gcc-4.6:<cxxflags>-fno-exceptions
45 <toolset>gcc-4.7:<cxxflags>-fno-exceptions
46 <toolset>gcc-4.8:<cxxflags>-fno-exceptions
47 <toolset>clang:<cxxflags>-fno-exceptions
48 : variant_noexcept_test
49 ]
50 [ run recursive_variant_test.cpp : : : <rtti>off <define>BOOST_NO_RTTI <define>BOOST_NO_TYPEID : variant_no_rtti_test ]
51 [ run hash_recursive_variant_test.cpp ]
52 [ run variant_swap_test.cpp ]
53 [ run auto_visitors.cpp ]
54 [ run overload_selection.cpp ]
55 [ run recursive_wrapper_move_test.cpp ]
56 [ run variant_over_joint_view_test.cpp ]
57 [ run const_ref_apply_visitor.cpp ]
58 ;
59
60