Skip to content

Commit 18f46f3

Browse files
committed
[libc++][ranges] Fix broken CI.
1 parent 9c0564a commit 18f46f3

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

libcxx/test/std/algorithms/ranges_robust_against_proxy_iterators.pass.cpp

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -149,10 +149,11 @@ constexpr void run_tests() {
149149
//test(std::ranges::sample, in, out, count, rand_gen);
150150
//test(std::ranges::unique, in);
151151
test(std::ranges::partition, in, unary_pred);
152-
if (!std::is_constant_evaluated())
153-
test(std::ranges::stable_partition, in, unary_pred);
152+
// TODO(ranges): `stable_partition` requires `ranges::rotate` to be implemented.
153+
//if (!std::is_constant_evaluated())
154+
// test(std::ranges::stable_partition, in, unary_pred);
154155
test(std::ranges::sort, in);
155-
// TODO: `stable_sort` requires `ranges::rotate` to be implemented.
156+
// TODO(ranges): `stable_sort` requires `ranges::rotate` to be implemented.
156157
//if (!std::is_constant_evaluated())
157158
// test(std::ranges::stable_sort, in);
158159
//test_mid(std::ranges::partial_sort, in, mid);

0 commit comments

Comments
 (0)