[libcxx][test] Fix a test for the range of file offsets on ARMv7 Linux targets. ...
[llvm-project.git] / libcxx / test / std / containers / sequences / list / list.modifiers / insert_range.pass.cpp
blobeb3937eb8f9e7aec48095254ba0848643caf749b
1 //===----------------------------------------------------------------------===//
2 //
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6 //
7 //===----------------------------------------------------------------------===//
9 // UNSUPPORTED: c++03, c++11, c++14, c++17, c++20
11 // template<container-compatible-range<T> R>
12 // constexpr iterator insert_range(const_iterator position, R&& rg); // C++23
14 #include <list>
16 #include "../../insert_range_sequence_containers.h"
17 #include "test_macros.h"
19 // Tested cases:
20 // - different kinds of insertions (inserting an {empty/one-element/mid-sized/long range} into an
21 // {empty/one-element/full} container at the {beginning/middle/end});
22 // - inserting move-only elements;
23 // - an exception is thrown when copying the elements or when allocating new elements.
24 int main(int, char**) {
25 static_assert(test_constraints_insert_range<std::list, int, double>());
27 for_all_iterators_and_allocators<int, const int*>([]<class Iter, class Sent, class Alloc>() {
28 test_sequence_insert_range<std::list<int, Alloc>, Iter, Sent>([](auto&&) {
29 // No additional validation to do.
30 });
31 });
32 test_sequence_insert_range_move_only<std::list>();
34 test_insert_range_exception_safety_throwing_copy<std::list>();
35 test_insert_range_exception_safety_throwing_allocator<std::list, int>();
37 return 0;