OSDN Git Service

Licensing changes to GPLv3 resp. GPLv3 with GCC Runtime Exception.
[pf3gnuchains/gcc-fork.git] / libstdc++-v3 / testsuite / 23_containers / vector / ext_pointer / modifiers / insert.cc
1 // Test for Container using non-standard pointer types.
2
3 // Copyright (C) 2008, 2009
4 // Free Software Foundation, Inc.
5 //
6 // This file is part of the GNU ISO C++ Library.  This library is free
7 // software; you can redistribute it and/or modify it under the
8 // terms of the GNU General Public License as published by the
9 // Free Software Foundation; either version 3, or (at your option)
10 // any later version.
11
12 // This library is distributed in the hope that it will be useful,
13 // but WITHOUT ANY WARRANTY; without even the implied warranty of
14 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 // GNU General Public License for more details.
16
17 // You should have received a copy of the GNU General Public License along
18 // with this library; see the file COPYING3.  If not see
19 // <http://www.gnu.org/licenses/>.
20
21
22 #include <vector>
23 #include <testsuite_hooks.h>
24 #include <ext/extptr_allocator.h>
25 #include <stdexcept>
26
27 void test01() 
28
29   bool test __attribute__((unused)) = true;
30
31   __gnu_cxx::_ExtPtr_allocator<int> alloc;
32   std::vector<int, __gnu_cxx::_ExtPtr_allocator<int> > iv(alloc);
33   VERIFY( iv.get_allocator() == alloc );
34   VERIFY( iv.size() == 0 );
35   
36   int A[] = { 0, 1, 2, 3, 4 };
37   int B[] = { 5, 5, 5, 5, 5 };
38   int C[] = { 6, 7 };
39   iv.insert(iv.end(), A, A+5 );
40   VERIFY( iv.size() == 5 );
41   iv.insert(iv.begin(), 5, 5 );
42   iv.insert(iv.begin()+5, 7);
43   iv.insert(iv.begin()+5, 6);
44   VERIFY( std::equal(iv.begin(), iv.begin()+5, B ));
45   VERIFY( std::equal(iv.begin()+5, iv.begin()+7, C));
46   VERIFY( std::equal(iv.begin()+7, iv.end(), A));
47   VERIFY( iv.size() == 12 );
48
49   try
50     {
51       iv.insert(iv.end(), iv.max_size() + 1, 1);
52     }
53   catch(std::length_error&)
54     {
55       VERIFY( true );
56     }
57   catch(...)
58     {
59       VERIFY( false );
60     }
61 }
62
63 int main()
64 {
65   test01();
66   return 0;
67 }