]> git.ipfire.org Git - thirdparty/gcc.git/blob - libstdc++-v3/testsuite/20_util/optional/relops/2.cc
Update copyright years.
[thirdparty/gcc.git] / libstdc++-v3 / testsuite / 20_util / optional / relops / 2.cc
1 // { dg-do run { target c++17 } }
2
3 // Copyright (C) 2013-2022 Free Software Foundation, Inc.
4 //
5 // This file is part of the GNU ISO C++ Library. This library is free
6 // software; you can redistribute it and/or modify it under the
7 // terms of the GNU General Public License as published by the
8 // Free Software Foundation; either version 3, or (at your option)
9 // any later version.
10
11 // This library is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 // GNU General Public License for more details.
15
16 // You should have received a copy of the GNU General Public License along
17 // with this library; see the file COPYING3. If not see
18 // <http://www.gnu.org/licenses/>.
19
20 #include <optional>
21 #include <testsuite_hooks.h>
22
23 #include <tuple>
24 #include <string>
25
26 namespace ns
27 {
28 struct value_type
29 {
30 int i;
31 std::string s;
32 };
33
34 bool
35 operator==(value_type const& lhs, value_type const& rhs)
36 { return std::tie(lhs.i, lhs.s) == std::tie(rhs.i, rhs.s); }
37
38 bool
39 operator!=(value_type const& lhs, value_type const& rhs)
40 { return std::tie(lhs.i, lhs.s) != std::tie(rhs.i, rhs.s); }
41
42 bool
43 operator<(value_type const& lhs, value_type const& rhs)
44 { return std::tie(lhs.i, lhs.s) < std::tie(rhs.i, rhs.s); }
45
46 bool
47 operator>(value_type const& lhs, value_type const& rhs)
48 { return std::tie(lhs.i, lhs.s) > std::tie(rhs.i, rhs.s); }
49
50 bool
51 operator<=(value_type const& lhs, value_type const& rhs)
52 { return std::tie(lhs.i, lhs.s) <= std::tie(rhs.i, rhs.s); }
53
54 bool
55 operator>=(value_type const& lhs, value_type const& rhs)
56 { return std::tie(lhs.i, lhs.s) >= std::tie(rhs.i, rhs.s); }
57
58 } // namespace ns
59
60 int main()
61 {
62 using ns::value_type;
63 using O = std::optional<value_type>;
64
65 {
66 O o, p;
67 VERIFY( !(o < p) );
68 VERIFY( !(o > p) );
69 VERIFY( o <= p );
70 VERIFY( o >= p );
71 }
72
73 {
74 O o { value_type { 42, "forty-two" } }, p;
75 VERIFY( !(o < p) );
76 VERIFY( o > p );
77 VERIFY( !(o <= p) );
78 VERIFY( o >= p );
79 }
80
81 {
82 O o, p { value_type { 42, "forty-two" } };
83 VERIFY( o < p );
84 VERIFY( !(o > p) );
85 VERIFY( o <= p );
86 VERIFY( !(o >= p) );
87 }
88
89 {
90 O o { value_type { 11, "eleventy" } }, p { value_type { 42, "forty-two" } };
91 VERIFY( o < p );
92 VERIFY( !(o > p) );
93 VERIFY( o <= p );
94 VERIFY( !(o >= p) );
95 }
96
97 {
98 O o { value_type { 42, "forty-two" } }, p { value_type { 11, "eleventy" } };
99 VERIFY( !(o < p) );
100 VERIFY( o > p );
101 VERIFY( !(o <= p) );
102 VERIFY( o >= p );
103 }
104
105 {
106 O o { value_type { 42, "forty-two" } }, p { value_type { 42, "forty-two" } };
107 VERIFY( !(o < p) );
108 VERIFY( !(o > p) );
109 VERIFY( o <= p );
110 VERIFY( o >= p );
111 }
112 }