summaryrefslogtreecommitdiff
path: root/libs/optional/test/Jamfile.v2
blob: aeb0900faac4f02a2d11c2e307775554c46d4043 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
#  Boost.Optional Library test Jamfile
#
#  Copyright (C) 2003, Fernando Luis Cacciola Carballal.
#
#  This material is provided "as is", with absolutely no warranty expressed
#  or implied. Any use is at your own risk.
#
#  Permission to use or copy this software for any purpose is hereby granted
#  without fee, provided the above notices are retained on all copies.
#  Permission to modify the code and to distribute modified code is granted,
#  provided the above notices are retained, and a notice that the code was
#  modified is included with the above copyright notice.
#

import testing ;

{
  test-suite optional :
    [ run optional_test.cpp ]
    [ run optional_test_tie.cpp ]
    [ run optional_test_ref.cpp ]
    [ run optional_test_inplace.cpp ]
    [ run optional_test_io.cpp ]
    [ run optional_test_move.cpp ]
    [ run optional_test_equals_none.cpp ]
    [ run optional_test_value_access.cpp ]
    [ run optional_test_emplace.cpp ]
    [ run optional_test_minimum_requirements.cpp ]
    [ compile-fail optional_test_fail1.cpp ]
    [ compile-fail optional_test_fail3a.cpp ]
    [ compile-fail optional_test_fail3b.cpp ]
    [ compile-fail optional_test_ref_fail1.cpp ]
    [ compile-fail optional_test_ref_fail3.cpp ]
    [ compile-fail optional_test_ref_fail4.cpp ]
    [ compile-fail optional_test_inplace_fail.cpp ]
    [ compile-fail optional_test_inplace_fail2.cpp ]
    [ compile-fail optional_test_fail_implicit_bool_convert.cpp ]
    [ compile-fail optional_test_fail_copying_a_moveable_type.cpp ]
    [ compile-fail optional_test_fail_optional_rvalue_ref.cpp ]
    [ compile-fail optional_test_ref_fail_init_from_Trefref.cpp ]
    [ compile-fail optional_test_ref_fail_init_from_Urefref.cpp ]
    [ compile-fail optional_test_ref_fail_assign_from_Trefref.cpp ]
    [ compile-fail optional_test_ref_fail_assign_from_Urefref.cpp ]
    [ compile-fail optional_test_fail_explicit_convert_in_value_or.cpp ]
    [ compile-fail optional_test_fail_explicit_convert_in_value_or_call.cpp ]
  ;
}