]> git.ipfire.org Git - thirdparty/gcc.git/blob - libstdc++-v3/testsuite/tr1/6_containers/unordered_set/insert/24061-set.cc
[multiple changes]
[thirdparty/gcc.git] / libstdc++-v3 / testsuite / tr1 / 6_containers / unordered_set / insert / 24061-set.cc
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.
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 COPYING. If not, write to the Free
18 // Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
19 // USA.
20
21 // 6.3.4.3 Class template unordered_set
22
23 #include <tr1/unordered_set>
24 #include <string>
25 #include <testsuite_hooks.h>
26
27 // libstdc++/24061
28 void test01()
29 {
30 bool test __attribute__((unused)) = true;
31
32 typedef std::tr1::unordered_set<std::string> Set;
33 typedef Set::iterator iterator;
34 typedef Set::const_iterator const_iterator;
35
36 Set s1;
37
38 iterator it1 = s1.insert(s1.begin(), "all the love in the world");
39 VERIFY( s1.size() == 1 );
40 VERIFY( *it1 == "all the love in the world" );
41
42 const_iterator cit1(it1);
43 const_iterator cit2 = s1.insert(cit1, "you know what you are?");
44 VERIFY( s1.size() == 2 );
45 VERIFY( cit2 != cit1 );
46 VERIFY( *cit2 == "you know what you are?" );
47
48 iterator it2 = s1.insert(it1, "all the love in the world");
49 VERIFY( s1.size() == 2 );
50 VERIFY( it2 == it1 );
51 VERIFY( *it2 == "all the love in the world" );
52 }
53
54 int main()
55 {
56 test01();
57 return 0;
58 }