]> git.ipfire.org Git - thirdparty/gcc.git/blame - libstdc++-v3/testsuite/24_iterators/reverse_iterator/11729.cc
Update copyright years.
[thirdparty/gcc.git] / libstdc++-v3 / testsuite / 24_iterators / reverse_iterator / 11729.cc
CommitLineData
c6ff1944
PC
1// 2005-10-04 Paolo Carlini <pcarlini@suse.de>
2
8d9254fc 3// Copyright (C) 2005-2020 Free Software Foundation, Inc.
c6ff1944
PC
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
748086b7 8// Free Software Foundation; either version 3, or (at your option)
c6ff1944
PC
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
748086b7
JJ
17// with this library; see the file COPYING3. If not see
18// <http://www.gnu.org/licenses/>.
c6ff1944
PC
19
20// 24.4.1.2 Reverse iterators
21
22#include <vector>
23#include <testsuite_hooks.h>
24
25// libstdc++/11729
26void test01()
27{
c6ff1944
PC
28 typedef std::vector<int> Vec;
29 typedef Vec::reverse_iterator reverse_iterator;
30 typedef Vec::const_reverse_iterator const_reverse_iterator;
31
32 Vec v(2);
33
34 reverse_iterator rbeg = v.rbegin();
35 reverse_iterator rend = v.rend();
36 const_reverse_iterator constrbeg(rbeg);
37 const_reverse_iterator constrend(rend);
38
39 VERIFY( rbeg == constrbeg );
40 VERIFY( constrend == rend );
41
42 VERIFY( rbeg != constrend );
43 VERIFY( constrbeg != rend );
44
45 VERIFY( rbeg < constrend );
46 VERIFY( constrbeg < rend );
47
48 VERIFY( rend > constrbeg );
49 VERIFY( constrend > rbeg );
50
51 VERIFY( rend >= constrend );
52 VERIFY( constrbeg >= rbeg );
53
54 VERIFY( rbeg <= constrbeg );
55 VERIFY( constrend <= rend );
56
57 VERIFY( rbeg - constrbeg == 0 );
58 VERIFY( constrend - rend == 0 );
59
60 VERIFY( rend - constrbeg > 0 );
61 VERIFY( constrend - rbeg > 0 );
62
63 VERIFY( (constrbeg = rend) == rend );
64}
65
66int main()
67{
68 test01();
69 return 0;
70}