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

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [libstdc++-v3/] [testsuite/] [25_algorithms/] [stable_partition/] [moveable.cc] - Blame information for rev 746

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) 2009, 2010, 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 Pred 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
// 25.2.12 [lib.alg.partitions] Partitions.
21
 
22
#include <algorithm>
23
#include <functional>
24
#include <testsuite_hooks.h>
25
#include <testsuite_iterators.h>
26
#include <testsuite_rvalref.h>
27
 
28
using __gnu_test::test_container;
29
using __gnu_test::random_access_iterator_wrapper;
30
using __gnu_test::rvalstruct;
31
 
32
typedef test_container<rvalstruct, random_access_iterator_wrapper> Container;
33
 
34
const int A[] = {1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17};
35
const int B[] = {2, 4, 6, 8, 10, 12, 14, 16, 1, 3, 5, 7, 9, 11, 13, 15, 17};
36
const int N = sizeof(A) / sizeof(int);
37
 
38
struct Pred
39
{
40
  bool
41
  operator()(const rvalstruct& x) const
42
  { return (x.val % 2) == 0; }
43
};
44
 
45
// 25.2.12 stable_partition()
46
void
47
test01()
48
{
49
  bool test __attribute__((unused)) = true;
50
 
51
  rvalstruct s1[N];
52
  std::copy(A, A + N, s1);
53
  Container con(s1, s1 + N);
54
 
55
  std::stable_partition(con.begin(), con.end(), Pred());
56
  VERIFY( std::equal(s1, s1 + N, B) );
57
}
58
 
59
int
60
main()
61
{
62
  test01();
63
  return 0;
64
}

powered by: WebSVN 2.1.0

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