]> git.ipfire.org Git - thirdparty/gcc.git/blob - libstdc++-v3/testsuite/25_algorithms/search_n/97828.cc
Update copyright years.
[thirdparty/gcc.git] / libstdc++-v3 / testsuite / 25_algorithms / search_n / 97828.cc
1 // Copyright (C) 2020-2021 Free Software Foundation, Inc.
2 //
3 // This file is part of the GNU ISO C++ Library. This library is free
4 // software; you can redistribute it and/or modify it under the
5 // terms of the GNU General Public License as published by the
6 // Free Software Foundation; either version 3, or (at your option)
7 // any later version.
8
9 // This library is distributed in the hope that it will be useful,
10 // but WITHOUT ANY WARRANTY; without even the implied warranty of
11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 // GNU General Public License for more details.
13
14 // You should have received a copy of the GNU General Public License along
15 // with this library; see the file COPYING3. If not see
16 // <http://www.gnu.org/licenses/>.
17
18 // { dg-options "-std=gnu++2a" }
19 // { dg-do run { target c++2a } }
20
21 // PR libstdc++/97828
22
23 #include <algorithm>
24 #include <testsuite_hooks.h>
25 #include <testsuite_iterators.h>
26
27 using __gnu_test::test_sized_range;
28 using __gnu_test::forward_iterator_wrapper;
29 using __gnu_test::random_access_iterator_wrapper;
30
31 template<template<typename> typename Wrapper>
32 void
33 test01()
34 {
35 int x[] = {0,42,42,0,42,42,42};
36 test_sized_range<int, Wrapper> rx(x);
37 auto res = std::ranges::search_n(rx, 3, 42);
38 VERIFY( res.begin().ptr == x+4 && res.end().ptr == x+7 );
39 }
40
41 template<template<typename> typename Wrapper>
42 void
43 test02()
44 {
45 int x[] = {0,42,42,0,42};
46 test_sized_range<int, Wrapper> rx(x);
47 auto res = std::ranges::search_n(rx, 3, 42);
48 VERIFY( res.begin().ptr == x+5 && res.end().ptr == x+5 );
49 }
50
51 int
52 main()
53 {
54 test01<forward_iterator_wrapper>();
55 test01<random_access_iterator_wrapper>();
56 test02<forward_iterator_wrapper>();
57 test02<random_access_iterator_wrapper>();
58 }