]> git.ipfire.org Git - thirdparty/gcc.git/blame - libstdc++-v3/testsuite/23_containers/vector/ext_pointer/modifiers/element.cc
Update copyright years.
[thirdparty/gcc.git] / libstdc++-v3 / testsuite / 23_containers / vector / ext_pointer / modifiers / element.cc
CommitLineData
b74318f1
BW
1// Test for Container using non-standard pointer types.
2
83ffe9cd 3// Copyright (C) 2008-2023 Free Software Foundation, Inc.
b74318f1
BW
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)
b74318f1
BW
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/>.
b74318f1 19
b74318f1
BW
20
21#include <vector>
b5aaf326 22#include <stdexcept>
b74318f1
BW
23#include <testsuite_hooks.h>
24#include <ext/extptr_allocator.h>
25
26// General tests element access and manipulation
27void test01()
28{
b74318f1
BW
29 int A[] = { 0, 1, 2, 3, 4 };
30 __gnu_cxx::_ExtPtr_allocator<int> alloc;
31 std::vector<int,__gnu_cxx::_ExtPtr_allocator<int> > mv( A, A+5, alloc );
32
33 VERIFY( mv.size() == 5 );
34 VERIFY( mv.front() == 0 );
35 VERIFY( mv.back() == 4 );
36 VERIFY( mv.at(2) == 2 );
37 VERIFY( mv[3] == 3);
38 mv.front() = 5;
39 mv.back() = 6;
40 mv.at(2) = 7;
41 mv[3] = 8;
42 VERIFY( mv.size() == 5 );
43 VERIFY( mv.front() == 5 );
44 VERIFY( mv.back() == 6 );
45 VERIFY( mv.at(2) == 7 );
46 VERIFY( mv[3] == 8 );
47
48 try
49 {
50 mv.at(100) = 8;
51 }
52 catch(std::out_of_range&)
53 {
54 VERIFY( true );
55 }
56 catch(...)
57 {
58 VERIFY( false );
59 }
60
61 const std::vector<int,__gnu_cxx::_ExtPtr_allocator<int> > cmv( mv );
62 VERIFY( cmv.get_allocator() == mv.get_allocator() );
63 VERIFY( mv.size() == 5 );
64 VERIFY( mv.front() == 5 );
65 VERIFY( mv.back() == 6 );
66 VERIFY( mv.at(2) == 7 );
67 VERIFY( mv[3] == 8 );
68}
69
70
71int main()
72{
73 test01();
74 return 0;
75}