Skip to content

Commit 5c0e469

Browse files
committed
ci
1 parent 4632706 commit 5c0e469

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

libcxx/test/std/containers/container.adaptors/flat.multiset/flat.multiset.modifiers/insert_range.pass.cpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,7 @@ void test() {
8686
MoveOnly expected[] = {1, 1, 3, 4, 5};
8787
assert(std::ranges::equal(m, expected));
8888
}
89+
#ifdef _LIBCPP_HAS_LOCALIZATION
8990
{
9091
// https://github.com/llvm/llvm-project/issues/136656
9192
MinSequenceContainer<int> v;
@@ -95,6 +96,7 @@ void test() {
9596
std::views::transform([](int i) { return i * i; });
9697
s.insert_range(r);
9798
}
99+
#endif
98100
}
99101

100102
void test_exception() {

libcxx/test/std/containers/container.adaptors/flat.set/flat.set.modifiers/insert_range.pass.cpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -97,6 +97,7 @@ void test() {
9797
MoveOnly expected[] = {1, 3, 4, 5};
9898
assert(std::ranges::equal(m, expected));
9999
}
100+
#ifdef _LIBCPP_HAS_LOCALIZATION
100101
{
101102
// https://github.com/llvm/llvm-project/issues/136656
102103
MinSequenceContainer<int> v;
@@ -106,6 +107,7 @@ void test() {
106107
std::views::transform([](int i) { return i * i; });
107108
s.insert_range(r);
108109
}
110+
#endif
109111
}
110112

111113
void test_exception() {

0 commit comments

Comments
 (0)