diff options
Diffstat (limited to 'libcxx/test/std/algorithms')
6 files changed, 10 insertions, 4 deletions
diff --git a/libcxx/test/std/algorithms/alg.modifying.operations/alg.copy/ranges.copy_backward.pass.cpp b/libcxx/test/std/algorithms/alg.modifying.operations/alg.copy/ranges.copy_backward.pass.cpp index 9cad71d..184008c 100644 --- a/libcxx/test/std/algorithms/alg.modifying.operations/alg.copy/ranges.copy_backward.pass.cpp +++ b/libcxx/test/std/algorithms/alg.modifying.operations/alg.copy/ranges.copy_backward.pass.cpp @@ -11,6 +11,7 @@ // UNSUPPORTED: c++03, c++11, c++14, c++17 // TODO: make `join_view` non-experimental once D2770 is implemented. // UNSUPPORTED: !c++experimental +// UNSUPPORTED: GCC-ALWAYS_INLINE-FIXME // template<bidirectional_iterator I1, sentinel_for<I1> S1, bidirectional_iterator I2> // requires indirectly_copyable<I1, I2> diff --git a/libcxx/test/std/algorithms/alg.modifying.operations/alg.move/ranges.move.pass.cpp b/libcxx/test/std/algorithms/alg.modifying.operations/alg.move/ranges.move.pass.cpp index 18ac692..d98c319 100644 --- a/libcxx/test/std/algorithms/alg.modifying.operations/alg.move/ranges.move.pass.cpp +++ b/libcxx/test/std/algorithms/alg.modifying.operations/alg.move/ranges.move.pass.cpp @@ -9,6 +9,7 @@ // <algorithm> // UNSUPPORTED: c++03, c++11, c++14, c++17 +// UNSUPPORTED: GCC-ALWAYS_INLINE-FIXME // template<input_iterator I, sentinel_for<I> S, weakly_incrementable O> // requires indirectly_movable<I, O> diff --git a/libcxx/test/std/algorithms/alg.modifying.operations/alg.move/ranges.move_backward.pass.cpp b/libcxx/test/std/algorithms/alg.modifying.operations/alg.move/ranges.move_backward.pass.cpp index 1a281c6..f6ca42b 100644 --- a/libcxx/test/std/algorithms/alg.modifying.operations/alg.move/ranges.move_backward.pass.cpp +++ b/libcxx/test/std/algorithms/alg.modifying.operations/alg.move/ranges.move_backward.pass.cpp @@ -6,9 +6,10 @@ // //===----------------------------------------------------------------------===// -// <algorithm> - // UNSUPPORTED: c++03, c++11, c++14, c++17 +// UNSUPPORTED: GCC-ALWAYS_INLINE-FIXME + +// <algorithm> // template<bidirectional_iterator I1, sentinel_for<I1> S1, bidirectional_iterator I2> // requires indirectly_movable<I1, I2> diff --git a/libcxx/test/std/algorithms/alg.sorting/alg.merge/ranges_merge.pass.cpp b/libcxx/test/std/algorithms/alg.sorting/alg.merge/ranges_merge.pass.cpp index 711da55..63c0277 100644 --- a/libcxx/test/std/algorithms/alg.sorting/alg.merge/ranges_merge.pass.cpp +++ b/libcxx/test/std/algorithms/alg.sorting/alg.merge/ranges_merge.pass.cpp @@ -6,9 +6,10 @@ // //===----------------------------------------------------------------------===// -// <algorithm> - // UNSUPPORTED: c++03, c++11, c++14, c++17 +// UNSUPPORTED: GCC-ALWAYS_INLINE-FIXME + +// <algorithm> // template<input_iterator I1, sentinel_for<I1> S1, input_iterator I2, sentinel_for<I2> S2, // weakly_incrementable O, class Comp = ranges::less, class Proj1 = identity, diff --git a/libcxx/test/std/algorithms/alg.sorting/alg.set.operations/set.symmetric.difference/ranges_set_symmetric_difference.pass.cpp b/libcxx/test/std/algorithms/alg.sorting/alg.set.operations/set.symmetric.difference/ranges_set_symmetric_difference.pass.cpp index dd453a6..c030417 100644 --- a/libcxx/test/std/algorithms/alg.sorting/alg.set.operations/set.symmetric.difference/ranges_set_symmetric_difference.pass.cpp +++ b/libcxx/test/std/algorithms/alg.sorting/alg.set.operations/set.symmetric.difference/ranges_set_symmetric_difference.pass.cpp @@ -9,6 +9,7 @@ // <algorithm> // UNSUPPORTED: c++03, c++11, c++14, c++17 +// UNSUPPORTED: GCC-ALWAYS_INLINE-FIXME // template<input_iterator I1, sentinel_for<I1> S1, input_iterator I2, sentinel_for<I2> S2, // weakly_incrementable O, class Comp = ranges::less, diff --git a/libcxx/test/std/algorithms/alg.sorting/alg.set.operations/set.union/ranges_set_union.pass.cpp b/libcxx/test/std/algorithms/alg.sorting/alg.set.operations/set.union/ranges_set_union.pass.cpp index 34eddfd..0ab97e0 100644 --- a/libcxx/test/std/algorithms/alg.sorting/alg.set.operations/set.union/ranges_set_union.pass.cpp +++ b/libcxx/test/std/algorithms/alg.sorting/alg.set.operations/set.union/ranges_set_union.pass.cpp @@ -7,6 +7,7 @@ //===----------------------------------------------------------------------===// // UNSUPPORTED: c++03, c++11, c++14, c++17 +// UNSUPPORTED: GCC-ALWAYS_INLINE-FIXME // <algorithm> |