OSDN Git Service

2006-09-18 Benjamin Kosnik <bkoz@redhat.com>
[pf3gnuchains/gcc-fork.git] / libstdc++-v3 / testsuite / 23_containers / list / modifiers / insert / 25288.cc
1 // Copyright (C) 2005, 2006 Free Software Foundation, Inc.
2 //
3 // This file is part of the GNU ISO C++ Library.  This library is free
4 // software; you can redistribute it and/or modify it under the
5 // terms of the GNU General Public License as published by the
6 // Free Software Foundation; either version 2, or (at your option)
7 // any later version.
8
9 // This library is distributed in the hope that it will be useful,
10 // but WITHOUT ANY WARRANTY; without Pred the implied warranty of
11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 // GNU General Public License for more details.
13
14 // You should have received a copy of the GNU General Public License along
15 // with this library; see the file COPYING.  If not, write to the Free
16 // Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
17 // USA.
18
19 // 23.2.2.3 list modifiers [lib.list.modifiers]
20
21 #include <list>
22 #include <testsuite_hooks.h>
23 #include <ext/throw_allocator.h>
24
25 // libstdc++/25288
26 void test01()
27 {
28   bool test __attribute__((unused)) = true;
29
30   typedef int value_type;
31   typedef __gnu_cxx::throw_allocator<value_type> allocator_type;
32   typedef std::list<value_type, allocator_type> list_type;
33
34   for (int j = 0; j < 10; ++j)
35     for (int i = 0; i < 10; ++i)
36       {
37         allocator_type alloc1;
38         allocator_type::zero_throw_prob_adjustor adjust1;
39         list_type list1(alloc1);
40         
41         for (int k = 0; k < j; ++k)
42           list1.push_back(value_type(-(k + 1)));
43       
44         try
45           {
46             alloc1.set_throw_prob(1);
47             list1.insert(list1.begin(), 10, 99);
48             VERIFY( false );
49           }
50         catch (__gnu_cxx::forced_exception_error&)
51           {
52             VERIFY( true );
53           }
54         catch (...)
55           {
56             VERIFY( false );
57           }
58         
59         VERIFY( list1.size() == list_type::size_type(j) );
60         VERIFY( list1.size() == 0 || list1.back() == -j );
61         VERIFY( list1.size() == 0 || list1.front() == -1 );
62
63         allocator_type alloc2;
64         allocator_type::zero_throw_prob_adjustor adjust2;
65         list_type list2(alloc2);
66         
67         const int data[] = { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 };
68         
69         for (int k = 0; k < j; ++k)
70           list2.push_back(-(k + 1));
71         
72         try
73           {
74             alloc2.set_throw_prob(1);
75             list2.insert(list2.begin(), data, data + 10);
76             VERIFY( false );
77           }
78         catch (__gnu_cxx::forced_exception_error&)
79           {
80             VERIFY( true );
81           }
82         catch (...)
83           {
84             VERIFY( false );
85           }
86
87         VERIFY( list2.size() == list_type::size_type(j) );
88         VERIFY( list2.size() == 0 || list2.back() == -j );
89         VERIFY( list2.size() == 0 || list2.front() == -1 );
90       }
91 }
92
93 int main()
94 {
95   test01();
96   return 0;
97 }