Imported Upstream version 4.8.1
[platform/upstream/gcc48.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-2013 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 <testsuite_hooks.h>
23 #include <ext/extptr_allocator.h>
24 #include <stdexcept>
25
26 void test01() 
27
28   bool test __attribute__((unused)) = true;
29
30   __gnu_cxx::_ExtPtr_allocator<int> alloc;
31   std::vector<int, __gnu_cxx::_ExtPtr_allocator<int> > iv(alloc);
32   VERIFY( iv.get_allocator() == alloc );
33   VERIFY( iv.size() == 0 );
34   
35   int A[] = { 0, 1, 2, 3, 4 };
36   int B[] = { 5, 5, 5, 5, 5 };
37   int C[] = { 6, 7 };
38   iv.insert(iv.end(), A, A+5 );
39   VERIFY( iv.size() == 5 );
40   iv.insert(iv.begin(), 5, 5 );
41   iv.insert(iv.begin()+5, 7);
42   iv.insert(iv.begin()+5, 6);
43   VERIFY( std::equal(iv.begin(), iv.begin()+5, B ));
44   VERIFY( std::equal(iv.begin()+5, iv.begin()+7, C));
45   VERIFY( std::equal(iv.begin()+7, iv.end(), A));
46   VERIFY( iv.size() == 12 );
47
48   try
49     {
50       iv.insert(iv.end(), iv.max_size() + 1, 1);
51     }
52   catch(std::length_error&)
53     {
54       VERIFY( true );
55     }
56   catch(...)
57     {
58       VERIFY( false );
59     }
60 }
61
62 int main()
63 {
64   test01();
65   return 0;
66 }