]> git.ipfire.org Git - thirdparty/gcc.git/blame - libstdc++-v3/testsuite/23_containers/deque/modifiers/erase/3.cc
Update copyright years.
[thirdparty/gcc.git] / libstdc++-v3 / testsuite / 23_containers / deque / modifiers / erase / 3.cc
CommitLineData
818ab71a 1// Copyright (C) 2007-2016 Free Software Foundation, Inc.
45dc23a6
SL
2//
3// This file is part of the GNU ISO C++ Library. This library is free
4// software; you can redistribute it and/or modify it under the
5// terms of the GNU General Public License as published by the
748086b7 6// Free Software Foundation; either version 3, or (at your option)
45dc23a6
SL
7// any later version.
8
9// This library is distributed in the hope that it will be useful,
10// but WITHOUT ANY WARRANTY; without even the implied warranty of
11// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12// GNU General Public License for more details.
13
14// You should have received a copy of the GNU General Public License along
748086b7
JJ
15// with this library; see the file COPYING3. If not see
16// <http://www.gnu.org/licenses/>.
45dc23a6
SL
17
18// 23.2.1.3 deque modifiers
19
20#include <deque>
21#include <testsuite_hooks.h>
22
23void erase(size_t num_elm, size_t elm_strt, size_t elm_end)
24{
25 bool test __attribute__((unused)) = true;
26 using __gnu_test::copy_tracker;
27 using __gnu_test::assignment_operator;
28
29 std::deque<copy_tracker> x(num_elm);
30 copy_tracker::reset();
31
32 x.erase(x.begin() + elm_strt, x.begin() + elm_end);
33
a7cee01d
PC
34 const size_t min_num_cpy
35 = elm_strt == elm_end ? 0 : std::min(elm_strt, num_elm - elm_end);
36
45dc23a6
SL
37 VERIFY( assignment_operator::count() == min_num_cpy );
38}
39
40// http://gcc.gnu.org/ml/libstdc++/2007-01/msg00098.html
41void test01()
42{
43 for (size_t num_elm = 0; num_elm <= 10; ++num_elm)
44 for (size_t elm_strt = 0; elm_strt <= num_elm; ++elm_strt)
45 for (size_t elm_end = elm_strt; elm_end <= num_elm; ++elm_end)
46 erase(num_elm, elm_strt, elm_end);
47}
48
49int main()
50{
51 test01();
52 return 0;
53}