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

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [libstdc++-v3/] [testsuite/] [23_containers/] [unordered_map/] [insert/] [map_single_move-2.cc] - Blame information for rev 742

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 742 jeremybenn
// { dg-options "-std=gnu++0x" }
2
 
3
// 2010-10-27  Paolo Carlini  <paolo.carlini@oracle.com> 
4
//
5
// Copyright (C) 2010 Free Software Foundation, Inc.
6
//
7
// This file is part of the GNU ISO C++ Library.  This library is free
8
// software; you can redistribute it and/or modify it under the
9
// terms of the GNU General Public License as published by the
10
// Free Software Foundation; either version 3, or (at your option)
11
// any later version.
12
//
13
// This library is distributed in the hope that it will be useful,
14
// but WITHOUT ANY WARRANTY; without even the implied warranty of
15
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16
// GNU General Public License for more details.
17
//
18
// You should have received a copy of the GNU General Public License along
19
// with this library; see the file COPYING3.  If not see
20
// <http://www.gnu.org/licenses/>.
21
 
22
// Single-element insert
23
 
24
#include <iterator>
25
#include <unordered_map>
26
#include <testsuite_hooks.h>
27
#include <testsuite_rvalref.h>
28
 
29
void test01()
30
{
31
  bool test __attribute__((unused)) = true;
32
  using __gnu_test::rvalstruct;
33
 
34
  typedef std::unordered_map<rvalstruct, rvalstruct> Map;
35
  typedef std::pair<rvalstruct, rvalstruct> Pair;
36
 
37
  Map m;
38
  VERIFY( m.empty());
39
 
40
  std::pair<Map::iterator, bool> p = m.insert(Pair(rvalstruct(1),
41
                                                   rvalstruct(3)));
42
  VERIFY( p.second );
43
  VERIFY( m.size() == 1 );
44
  VERIFY( std::distance(m.begin(), m.end()) == 1 );
45
  VERIFY( p.first == m.begin() );
46
  VERIFY( (p.first->first).val == 1 );
47
  VERIFY( (p.first->second).val == 3 );
48
}
49
 
50
void test02()
51
{
52
  bool test __attribute__((unused)) = true;
53
  using __gnu_test::rvalstruct;
54
 
55
  typedef std::unordered_map<rvalstruct, rvalstruct> Map;
56
  typedef std::pair<rvalstruct, rvalstruct> Pair;
57
 
58
  Map m;
59
  VERIFY( m.empty() );
60
 
61
  std::pair<Map::iterator, bool> p1 = m.insert(Pair(rvalstruct(2),
62
                                                    rvalstruct(3)));
63
  std::pair<Map::iterator, bool> p2 = m.insert(Pair(rvalstruct(2),
64
                                                    rvalstruct(7)));
65
 
66
  VERIFY( p1.second );
67
  VERIFY( !p2.second );
68
  VERIFY( m.size() == 1 );
69
  VERIFY( p1.first == p2.first );
70
  VERIFY( (p1.first->first).val == 2 );
71
  VERIFY( (p2.first->second).val == 3 );
72
}
73
 
74
int main()
75
{
76
  test01();
77
  test02();
78
  return 0;
79
}

powered by: WebSVN 2.1.0

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