]> git.ipfire.org Git - thirdparty/gcc.git/blame - libstdc++-v3/testsuite/20_util/scoped_allocator/1.cc
Update copyright years.
[thirdparty/gcc.git] / libstdc++-v3 / testsuite / 20_util / scoped_allocator / 1.cc
CommitLineData
52066eae 1// { dg-do run { target c++11 } }
677aad9c 2
99dee823 3// Copyright (C) 2011-2021 Free Software Foundation, Inc.
677aad9c
JW
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,
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 COPYING3. If not see
18// <http://www.gnu.org/licenses/>.
19
20#include <memory>
21#include <scoped_allocator>
22#include <vector>
23#include <testsuite_hooks.h>
24#include <testsuite_allocator.h>
25
26using __gnu_test::uneq_allocator;
27
28struct Element
29{
30 typedef uneq_allocator<Element> allocator_type;
31
32 allocator_type alloc;
33
34 Element(const allocator_type& a = allocator_type()) : alloc(a) { }
35
862023d7 36 Element(std::allocator_arg_t, const allocator_type& a, int = 0)
677aad9c
JW
37 : alloc(a) { }
38
39 Element(std::allocator_arg_t, const allocator_type& a, const Element&)
40 : alloc(a) { }
41
42 const allocator_type& get_allocator() const { return alloc; }
43};
44
45void test01()
46{
677aad9c
JW
47 typedef std::scoped_allocator_adaptor<Element::allocator_type> alloc1_type;
48
49 typedef std::vector<Element, alloc1_type> EltVec;
50
51 alloc1_type a1(1);
52 Element e;
53 EltVec ev1(1, e, a1);
862023d7 54 VERIFY( ev1.get_allocator().get_personality() == 1 );
677aad9c
JW
55 VERIFY( ev1[0].get_allocator().get_personality() == 1 );
56}
57
58void test02()
59{
78ed0f80 60 typedef std::scoped_allocator_adaptor<Element::allocator_type> alloc1_type;
677aad9c 61
78ed0f80 62 typedef std::vector<Element, alloc1_type> EltVec;
862023d7
JW
63
64 typedef std::scoped_allocator_adaptor<Element::allocator_type,
78ed0f80
JW
65 Element::allocator_type> alloc2_type;
66
67 typedef std::allocator_traits<alloc2_type>::rebind_alloc<EltVec> alloc_type;
677aad9c
JW
68
69 typedef std::vector<EltVec, alloc_type> EltVecVec;
70
862023d7 71 alloc_type a(1, Element::allocator_type(2)); // outer=1, inner=2
677aad9c
JW
72 Element e;
73 EltVec ev(1, e);
74 EltVecVec evv(1, ev, a);
75
76 VERIFY( evv.get_allocator().get_personality() == 1 );
77 VERIFY( evv[0].get_allocator().get_personality() == 2 );
78 VERIFY( evv[0][0].get_allocator().get_personality() == 2 );
79
862023d7 80 alloc_type a2(3, Element::allocator_type(4)); // outer=3, inner=4
677aad9c
JW
81
82 EltVecVec evv2(evv, a2); // copy with a different allocator
83
84 VERIFY( evv2.get_allocator().get_personality() == 3 );
85 VERIFY( evv2[0].get_allocator().get_personality() == 4 );
86 VERIFY( evv2[0][0].get_allocator().get_personality() == 4 );
87
88 EltVecVec evv3(std::move(evv), a2); // move with a different allocator
89
90 VERIFY( evv3.get_allocator().get_personality() == 3 );
91 VERIFY( evv3[0].get_allocator().get_personality() == 4 );
92 VERIFY( evv3[0][0].get_allocator().get_personality() == 4 );
677aad9c
JW
93}
94
677aad9c
JW
95int main()
96{
97 test01();
862023d7 98 test02();
677aad9c 99}