OpenCores
URL https://opencores.org/ocsvn/openrisc/openrisc/trunk

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [libstdc++-v3/] [testsuite/] [20_util/] [scoped_allocator/] [1.cc] - Blame information for rev 820

Go to most recent revision | Details | Compare with Previous | View Log

Line No. Rev Author Line
1 742 jeremybenn
// { dg-options "-std=gnu++0x" }
2
 
3
// Copyright (C) 2011 Free Software Foundation, Inc.
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
 
26
using __gnu_test::uneq_allocator;
27
 
28
struct 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
 
36
  Element(std::allocator_arg_t, const allocator_type& a, int i = 0)
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
 
45
void test01()
46
{
47
  bool test __attribute((unused)) = false;
48
 
49
  typedef std::scoped_allocator_adaptor<Element::allocator_type> alloc1_type;
50
 
51
  typedef std::vector<Element, alloc1_type> EltVec;
52
 
53
  alloc1_type a1(1);
54
  Element e;
55
  EltVec ev1(1, e, a1);
56
  VERIFY( ev1[0].get_allocator().get_personality() == 1 );
57
}
58
 
59
void test02()
60
{
61
  bool test __attribute((unused)) = false;
62
 
63
  typedef std::vector<Element, Element::allocator_type> EltVec;
64
 
65
  typedef std::scoped_allocator_adaptor<EltVec::allocator_type,
66
                                        Element::allocator_type> alloc_type;
67
 
68
  typedef std::vector<EltVec, alloc_type> EltVecVec;
69
 
70
  alloc_type a(1, 2);
71
  Element e;
72
  EltVec ev(1, e);
73
  EltVecVec evv(1, ev, a);
74
 
75
  VERIFY( evv.get_allocator().get_personality() == 1 );
76
  VERIFY( evv[0].get_allocator().get_personality() == 2 );
77
  VERIFY( evv[0][0].get_allocator().get_personality() == 2 );
78
 
79
  alloc_type a2(3, 4);
80
 
81
  EltVecVec evv2(evv, a2); // copy with a different allocator
82
 
83
  VERIFY( evv2.get_allocator().get_personality() == 3 );
84
  VERIFY( evv2[0].get_allocator().get_personality() == 4 );
85
  VERIFY( evv2[0][0].get_allocator().get_personality() == 4 );
86
 
87
  EltVecVec evv3(std::move(evv), a2); // move with a different allocator
88
 
89
  VERIFY( evv3.get_allocator().get_personality() == 3 );
90
  VERIFY( evv3[0].get_allocator().get_personality() == 4 );
91
  VERIFY( evv3[0][0].get_allocator().get_personality() == 4 );
92
 
93
}
94
 
95
 
96
int main()
97
{
98
  test01();
99
}

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.