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

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [libstdc++-v3/] [testsuite/] [25_algorithms/] [partial_sort/] [check_compare_by_value.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
// 25.3.1.3 [lib.partial.sort]
21
 
22
#undef _GLIBCXX_CONCEPT_CHECKS
23
 
24
// XXX FIXME:  parallel-mode should deal correctly with moveable-only types
25
// per C++0x, at minimum smoothly fall back to serial.
26
#undef _GLIBCXX_PARALLEL
27
 
28
#include <algorithm>
29
#include <testsuite_hooks.h>
30
#include <testsuite_iterators.h>
31
#include <testsuite_rvalref.h>
32
 
33
using __gnu_test::test_container;
34
using __gnu_test::random_access_iterator_wrapper;
35
 
36
typedef __gnu_test::rvalstruct_compare_by_value V;
37
typedef test_container<V, random_access_iterator_wrapper> Container;
38
 
39
void
40
test01()
41
{
42
  bool test __attribute__((unused)) = true;
43
 
44
  V s1[] = { 10, 20, 1, 11, 2, 12, 3, 13, 4, 14, 5, 15, 6, 16, 7,
45
             17, 8, 18, 9, 19 };
46
  const int N = sizeof(s1) / sizeof(V);
47
  Container con(s1, s1 + N);
48
  std::partial_sort(con.begin(), con.begin() + 10, con.end());
49
  VERIFY( s1[0].ok );
50
  for(int i = 1; i < 10; ++i)
51
    VERIFY( s1[i].val > s1[i - 1].val && s1[i].ok );
52
  for(int i = 10; i < N; ++i)
53
    VERIFY( s1[i].val > s1[9].val && s1[i].ok );
54
 
55
}
56
 
57
void
58
test02()
59
{
60
  bool test __attribute__((unused)) = true;
61
 
62
  V s1[] = { 10, 20, 1, 11, 2, 12, 3, 13, 4, 14, 5, 15, 6, 16, 7,
63
             17, 8, 18, 9, 19 };
64
  const int N = sizeof(s1) / sizeof(V);
65
  Container con(s1, s1 + N);
66
  std::partial_sort(con.begin(), con.begin() + 10, con.end(),
67
                    __gnu_test::order);
68
  VERIFY( s1[0].ok );
69
  for(int i = 1; i < 10; ++i)
70
    VERIFY( s1[i].val > s1[i - 1].val && s1[i].ok );
71
  for(int i = 10; i < N; ++i)
72
    VERIFY( s1[i].val > s1[9].val && s1[i].ok );
73
}
74
 
75
void
76
test03()
77
{
78
  bool test __attribute__((unused)) = true;
79
 
80
  V vvs[] = { 2, 0 };
81
  std::partial_sort(vvs, vvs + 2, vvs + 2);
82
  VERIFY( vvs[0].ok && vvs[0].val == 0 );
83
  VERIFY( vvs[1].ok && vvs[1].val == 2 );
84
}
85
 
86
int
87
main()
88
{
89
  test01();
90
  test02();
91
  test03();
92
  return 0;
93
}

powered by: WebSVN 2.1.0

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