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

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [libstdc++-v3/] [testsuite/] [23_containers/] [unordered_multiset/] [insert/] [multiset_range.cc] - Blame information for rev 833

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) 2010 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
// range insert
21
 
22
#include <string>
23
#include <iterator>
24
#include <algorithm>
25
#include <unordered_set>
26
#include <testsuite_hooks.h>
27
 
28
namespace
29
{
30
  template <typename _Tp>
31
    std::size_t
32
    get_nb_bucket_elems(const std::unordered_multiset<_Tp>& us)
33
    {
34
      std::size_t nb = 0;
35
      for (std::size_t b = 0; b != us.bucket_count(); ++b)
36
        nb += us.bucket_size(b);
37
      return nb;
38
    }
39
}
40
 
41
void test01()
42
{
43
  bool test __attribute__((unused)) = true;
44
 
45
  typedef std::unordered_multiset<std::string> Set;
46
  Set s;
47
  VERIFY(s.empty());
48
 
49
  const int N = 10;
50
  const std::string A[N] = { "red", "green", "blue", "violet", "cyan",
51
                             "magenta", "yellow", "orange", "pink", "gray" };
52
 
53
  s.insert(A+0, A+N);
54
  VERIFY( s.size() == static_cast<unsigned int>(N) );
55
  VERIFY( std::distance(s.begin(), s.end()) == N );
56
  VERIFY( get_nb_bucket_elems(s) == N );
57
 
58
  for (int i = 0; i < N; ++i) {
59
    std::string str = A[i];
60
    Set::iterator it = std::find(s.begin(), s.end(), str);
61
    VERIFY(it != s.end());
62
  }
63
}
64
 
65
void test02()
66
{
67
  bool test __attribute__((unused)) = true;
68
 
69
  typedef std::unordered_multiset<int> Set;
70
  Set s;
71
  VERIFY(s.empty());
72
 
73
  const int N = 8;
74
  const int A[N] = { 3, 7, 4, 8, 2, 4, 6, 7 };
75
 
76
  s.insert(A+0, A+N);
77
  VERIFY(s.size() == static_cast<unsigned int>(N));
78
  VERIFY(std::distance(s.begin(), s.end()) == N);
79
  VERIFY( get_nb_bucket_elems(s) == N );
80
 
81
  VERIFY(std::count(s.begin(), s.end(), 2) == 1);
82
  VERIFY(std::count(s.begin(), s.end(), 3) == 1);
83
  VERIFY(std::count(s.begin(), s.end(), 4) == 2);
84
  VERIFY(std::count(s.begin(), s.end(), 6) == 1);
85
  VERIFY(std::count(s.begin(), s.end(), 7) == 2);
86
  VERIFY(std::count(s.begin(), s.end(), 8) == 1);
87
}
88
 
89
int main()
90
{
91
  test01();
92
  test02();
93
  return 0;
94
}

powered by: WebSVN 2.1.0

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