]> git.ipfire.org Git - thirdparty/gcc.git/blame - libstdc++-v3/testsuite/25_algorithms/search_n/97828.cc
Update copyright years.
[thirdparty/gcc.git] / libstdc++-v3 / testsuite / 25_algorithms / search_n / 97828.cc
CommitLineData
99dee823 1// Copyright (C) 2020-2021 Free Software Foundation, Inc.
8661f4fa
PP
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
27using __gnu_test::test_sized_range;
28using __gnu_test::forward_iterator_wrapper;
29using __gnu_test::random_access_iterator_wrapper;
30
31template<template<typename> typename Wrapper>
32void
33test01()
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
41template<template<typename> typename Wrapper>
42void
43test02()
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
51int
52main()
53{
54 test01<forward_iterator_wrapper>();
55 test01<random_access_iterator_wrapper>();
56 test02<forward_iterator_wrapper>();
57 test02<random_access_iterator_wrapper>();
58}