OSDN Git Service

2010-02-11 Paolo Carlini <paolo.carlini@oracle.com>
[pf3gnuchains/gcc-fork.git] / libstdc++-v3 / testsuite / 23_containers / unordered_multimap / erase / 24061-multimap.cc
1 // { dg-options "-std=gnu++0x" }
2
3 // 2010-02-10  Paolo Carlini  <paolo.carlini@oracle.com> 
4 //
5 // Copyright (C) 2010 Free Software Foundation, Inc.
6 //
7 // This file is part of the GNU ISO C++ Library.  This library is free
8 // software; you can redistribute it and/or modify it under the
9 // terms of the GNU General Public License as published by the
10 // Free Software Foundation; either version 3, or (at your option)
11 // any later version.
12 //
13 // This library is distributed in the hope that it will be useful,
14 // but WITHOUT ANY WARRANTY; without even the implied warranty of
15 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 // GNU General Public License for more details.
17 //
18 // You should have received a copy of the GNU General Public License along
19 // with this library; see the file COPYING3.  If not see
20 // <http://www.gnu.org/licenses/>.
21
22 #include <unordered_map>
23 #include <string>
24 #include <testsuite_hooks.h>
25
26 // libstdc++/24061
27 void test01()
28 {
29   bool test __attribute__((unused)) = true;
30   
31   typedef std::unordered_multimap<std::string, int> Mmap;
32   typedef Mmap::iterator       iterator;
33   typedef Mmap::const_iterator const_iterator;
34   typedef Mmap::value_type     value_type;
35   
36   Mmap mm1;
37
38   mm1.insert(value_type("all the love in the world", 1));
39   mm1.insert(value_type("you know what you are?", 2));
40   mm1.insert(value_type("the collector", 3));
41   mm1.insert(value_type("the hand that feeds", 4));
42   mm1.insert(value_type("love is not enough", 5));
43   mm1.insert(value_type("every day is exactly the same", 6));
44   mm1.insert(value_type("with teeth", 7));
45   mm1.insert(value_type("only", 8));
46   mm1.insert(value_type("getting smaller", 9));
47   mm1.insert(value_type("sunspots", 10));
48
49   mm1.insert(value_type("you know what you are?", 5));
50   mm1.insert(value_type("the collector", 6));
51   mm1.insert(value_type("the hand that feeds", 7));
52   VERIFY( mm1.size() == 13 );
53
54   iterator it1 = mm1.begin();
55   ++it1;
56   iterator it2 = it1;
57   ++it2;
58   mm1.erase(it1);
59   VERIFY( mm1.size() == 12 );
60
61   iterator it4 = mm1.begin();
62   ++it4;
63   ++it4;
64   ++it4;
65   iterator it5 = it4;
66   ++it5;
67   ++it5;
68   mm1.erase(it4, it5);
69   VERIFY( mm1.size() == 10 );
70
71   const_iterator it7 = mm1.begin();
72   ++it7;
73   ++it7;
74   ++it7;
75   const_iterator it8 = it7;
76   ++it8;
77   mm1.erase(it7);
78   VERIFY( mm1.size() == 9 );
79
80   const_iterator it10 = mm1.begin();
81   ++it10;
82   const_iterator it11 = it10;
83   ++it11;
84   ++it11;
85   ++it11;
86   ++it11;
87   mm1.erase(it10, it11);
88   VERIFY( mm1.size() == 5 );
89
90   mm1.erase(mm1.begin(), mm1.end());
91   VERIFY( mm1.size() == 0 );
92 }
93   
94 int main()
95 {
96   test01();
97   return 0;
98 }