Merge from mainline (163495:164578).
[official-gcc/graphite-test-results.git] / libstdc++-v3 / testsuite / 23_containers / forward_list / operations / remove_freed.cc
blob5b959209263ef957af034d9f1284ba6d8d163554
1 // { dg-options "-std=gnu++0x" }
3 // 2010-08-11 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.
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.
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/>.
22 #include <forward_list>
23 #include <testsuite_hooks.h>
25 // 23.3.3.5 forward_list operations [forwardlist.ops]
27 // Used to cause many Valgrind errors: LWG 526-type situation.
28 void test01()
30 bool test __attribute__((unused)) = true;
32 std::forward_list<int> fl1;
34 fl1.push_front(1);
35 fl1.push_front(2);
36 fl1.push_front(3);
37 fl1.push_front(4);
38 fl1.push_front(1);
40 fl1.remove(*fl1.begin());
42 VERIFY( std::distance(fl1.begin(), fl1.end()) == 3 );
44 auto it1 = fl1.begin();
46 VERIFY( *it1 == 4 );
47 ++it1;
48 VERIFY( *it1 == 3 );
49 ++it1;
50 VERIFY( *it1 == 2 );
52 std::forward_list<int> fl2;
54 fl2.push_front(3);
55 fl2.push_front(3);
56 fl2.push_front(3);
57 fl2.push_front(3);
58 fl2.push_front(3);
60 auto it2 = fl2.begin();
61 ++it2;
62 ++it2;
64 fl2.remove(*it2);
66 VERIFY( std::distance(fl2.begin(), fl2.end()) == 0 );
68 std::forward_list<int> fl3;
70 fl3.push_front(1);
71 fl3.push_front(2);
72 fl3.push_front(3);
73 fl3.push_front(3);
74 fl3.push_front(3);
76 auto it3 = fl3.begin();
77 ++it3;
78 ++it3;
80 fl3.remove(*it3);
82 VERIFY( std::distance(fl3.begin(), fl3.end()) == 2 );
84 it3 = fl3.begin();
85 VERIFY( *it3 == 2 );
86 ++it3;
87 VERIFY( *it3 == 1 );
90 int main()
92 test01();
93 return 0;