]> git.ipfire.org Git - thirdparty/gcc.git/blame - libstdc++-v3/testsuite/23_containers/list/operations/42352.cc
Update copyright years.
[thirdparty/gcc.git] / libstdc++-v3 / testsuite / 23_containers / list / operations / 42352.cc
CommitLineData
52066eae 1// { dg-do run { target c++11 } }
d385563f 2
99dee823 3// Copyright (C) 2009-2021 Free Software Foundation, Inc.
d385563f
PC
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 3, or (at your option)
9// any later version.
10
11// This library is distributed in the hope that it will be useful,
2328b1de 12// but WITHOUT ANY WARRANTY; without even the implied warranty of
d385563f
PC
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 COPYING3. If not see
18// <http://www.gnu.org/licenses/>.
19
20#include <list>
21#include <testsuite_hooks.h>
22
23// PR libstdc++/42352
24void test01()
25{
d385563f
PC
26 std::list<int> l{3, 2, 4, 1, 5, 9, 0, 8, 6, 7};
27
28 l.sort();
29
30 for (auto it = l.begin(); it != l.end(); ++it)
31 {
32 static int nn = 0;
33 VERIFY( *it == nn++ );
34 }
35}
36
37void test02()
38{
d385563f
PC
39 std::list<int> l{3, 2, 4, 1, 5, 9, 0, 8, 6, 7};
40
41 struct compare
42 {
43 bool
44 operator()(int const& one, int const& two) const
45 { return one > two; }
46 };
47
48 l.sort(compare());
49
50 for (auto it = l.begin(); it != l.end(); ++it)
51 {
52 static int nn = 9;
53 VERIFY( *it == nn-- );
54 }
55}
56
57int main()
58{
59 test01();
60 test02();
61 return 0;
62}