]> git.ipfire.org Git - thirdparty/gcc.git/blob - libstdc++-v3/testsuite/23_containers/map/allocator/init-list.cc
Update copyright years.
[thirdparty/gcc.git] / libstdc++-v3 / testsuite / 23_containers / map / allocator / init-list.cc
1 // Copyright (C) 2014-2015 Free Software Foundation, Inc.
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
6 // Free Software Foundation; either version 3, or (at your option)
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
15 // with this library; see the file COPYING3. If not see
16 // <http://www.gnu.org/licenses/>.
17 //
18
19 // { dg-options "-std=gnu++11" }
20
21 #include <map>
22 #include <testsuite_hooks.h>
23 #include <testsuite_allocator.h>
24
25 void test01()
26 {
27 bool test __attribute__((unused)) = true;
28
29 using namespace __gnu_test;
30
31 typedef tracker_allocator<std::pair<const int, int>> alloc_type;
32 typedef std::map<int, int, std::less<int>, alloc_type> test_type;
33
34 tracker_allocator_counter::reset();
35
36 test_type v1;
37 v1 = { { 0, 0 }, { 1, 1 } };
38
39 auto allocs = tracker_allocator_counter::get_allocation_count();
40 auto constructs = tracker_allocator_counter::get_construct_count();
41
42 VERIFY( allocs != 0 );
43 VERIFY( constructs != 0 );
44
45 // Check no allocation on list initialization.
46 v1 = { { 4, 4 }, { 5, 5 } };
47
48 VERIFY( tracker_allocator_counter::get_allocation_count() == allocs );
49 VERIFY( tracker_allocator_counter::get_construct_count() == constructs + 2 );
50 }
51
52 int main()
53 {
54 test01();
55 }