1 // Test for Container using non-standard pointer types.
2 
3 // Copyright (C) 2008-2018 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 
21 #include <vector>
22 #include <stdexcept>
23 #include <testsuite_hooks.h>
24 #include <ext/extptr_allocator.h>
25 
26 // General tests element access and manipulation
test01()27 void test01()
28 {
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 
main()71 int main()
72 {
73   test01();
74   return 0;
75 }
76