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

Subversion Repositories openrisc_me

[/] [openrisc/] [trunk/] [gnu-src/] [gcc-4.5.1/] [libstdc++-v3/] [testsuite/] [23_containers/] [vector/] [modifiers/] [2.cc] - Blame information for rev 424

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 424 jeremybenn
// 1999-11-09 bkoz
2
 
3
// Copyright (C) 1999, 2001, 2004, 2005, 2009 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
// 23.2.4.3 vector modifiers
21
 
22
#include <vector>
23
#include "testsuite_hooks.h"
24
 
25
bool test __attribute__((unused)) = true;
26
 
27
// test the assign() function
28
void
29
test03()
30
{
31
  const int K = 417;
32
  const int A[] = {1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17};
33
  const int B[] = {K, K, K, K, K};
34
  const std::size_t N = sizeof(A) / sizeof(int);
35
  const std::size_t M = sizeof(B) / sizeof(int);
36
  bool test __attribute__((unused)) = true;
37
 
38
  // assign from pointer range
39
  std::vector<int> v3;
40
  v3.assign(A, A + N);
41
  VERIFY(std::equal(v3.begin(), v3.end(), A));
42
  VERIFY(v3.size() == N);
43
 
44
  // assign from iterator range
45
  std::vector<int> v4;
46
  v4.assign(v3.begin(), v3.end());
47
  VERIFY(std::equal(v4.begin(), v4.end(), A));
48
  VERIFY(std::equal(A, A + N, v4.begin()));
49
 
50
  // assign from initializer range with resize
51
  v4.assign(M, K);
52
  VERIFY(std::equal(v4.begin(), v4.end(), B));
53
  VERIFY(std::equal(B, B + M, v4.begin()));
54
  VERIFY((v4.size() == M) && (M != N));
55
}
56
 
57
int main()
58
{
59
  test03();
60
  return 0;
61
}

powered by: WebSVN 2.1.0

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