Dead
[official-gcc.git] / gomp-20050608-branch / libstdc++-v3 / testsuite / tr1 / 6_containers / unordered / insert / 24061-map.cc
blob8e290afd7f75f3dabd76e7d6eebb6ca3b1f76261
1 // 2005-10-08 Paolo Carlini <pcarlini@suse.de>
2 //
3 // Copyright (C) 2005 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 2, or (at your option)
9 // any later version.
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.
16 // You should have received a copy of the GNU General Public License along
17 // with this library; see the file COPYING. If not, write to the Free
18 // Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
19 // USA.
21 // 6.3.4.4 Class template unordered_map
23 #include <tr1/unordered_map>
24 #include <string>
25 #include <testsuite_hooks.h>
27 // libstdc++/24061
28 void test01()
30 bool test __attribute__((unused)) = true;
32 typedef std::tr1::unordered_map<std::string, int> Map;
33 typedef Map::iterator iterator;
34 typedef Map::const_iterator const_iterator;
35 typedef Map::value_type value_type;
37 Map m1;
39 iterator it1 = m1.insert(m1.begin(),
40 value_type("all the love in the world", 1));
41 VERIFY( m1.size() == 1 );
42 VERIFY( *it1 == value_type("all the love in the world", 1) );
44 const_iterator cit1(it1);
45 const_iterator cit2 = m1.insert(cit1,
46 value_type("you know what you are?", 2));
47 VERIFY( m1.size() == 2 );
48 VERIFY( cit2 != cit1 );
49 VERIFY( *cit2 == value_type("you know what you are?", 2) );
51 iterator it2 = m1.insert(it1, value_type("all the love in the world", 3));
52 VERIFY( m1.size() == 2 );
53 VERIFY( it2 == it1 );
54 VERIFY( *it2 == value_type("all the love in the world", 1) );
57 int main()
59 test01();
60 return 0;