A. Jiang 11c0fd4f44
[libc++][test] Fix constexpr stdver. for tests for find_if(_not) (#176303)
Until C++20, `std::find_if(_not)` were not `constexpr`, so uses of
`TEST_CONSTEXPR_CXX17` make the test functions ill-formed, no diagnostic
required in C++17 mode.

The uses were introduced in 2b4b26ea84fd9c95d0ff25ce338c15ea5e74a4e4,
while the transformation looked incorrect - `TEST_CONSTEXPR_CXX20`
should be used instead.

Drive-by changes: Fix comments in both changed test files to match the
actually standardized wording.
2026-01-16 11:33:29 +01:00

74 lines
2.0 KiB
C++

//===----------------------------------------------------------------------===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//
// <algorithm>
// template<class InputIterator, class Predicate>
// constexpr InputIterator find_if(InputIterator first, InputIterator last, Predicate pred); // constexpr since C++20
#include <algorithm>
#include <functional>
#include <cassert>
#include "test_macros.h"
#include "test_iterators.h"
struct EqualTo {
int v;
TEST_CONSTEXPR EqualTo(int val) : v(val) {}
TEST_CONSTEXPR bool operator()(int other) const { return v == other; }
};
template <class Iter>
TEST_CONSTEXPR_CXX20 void test_iter() {
int range[] = {0, 1, 2, 3, 4, 5, 6, 7, 8, 9};
// We don't find what we're looking for in the range
{
{
Iter result = std::find_if(Iter(range), Iter(range), EqualTo(0));
assert(result == Iter(range));
}
{
Iter result = std::find_if(Iter(range), Iter(std::end(range)), EqualTo(999));
assert(result == Iter(std::end(range)));
}
}
// Tests with sub-ranges of various sizes
for (int size = 1; size != 10; ++size) {
for (int i = 0; i != size - 1; ++i) {
Iter result = std::find_if(Iter(range), Iter(range + size), EqualTo(i));
assert(result == Iter(range + i));
}
}
}
TEST_CONSTEXPR_CXX20 bool test() {
test_iter<cpp17_input_iterator<int*> >();
test_iter<forward_iterator<int*> >();
test_iter<bidirectional_iterator<int*> >();
test_iter<random_access_iterator<int*> >();
{ // Check that [nullptr, nullptr) is an accepted range
auto result = std::find_if(static_cast<int*>(nullptr), static_cast<int*>(nullptr), [](int i) { return i == 0; });
assert(result == nullptr);
}
return true;
}
int main(int, char**) {
test();
#if TEST_STD_VER >= 20
static_assert(test());
#endif
return 0;
}