diff options
author | Marshall Clow <mclow.lists@gmail.com> | 2019-07-08 03:45:28 +0000 |
---|---|---|
committer | Marshall Clow <mclow.lists@gmail.com> | 2019-07-08 03:45:28 +0000 |
commit | f814dcbafbabd46a1babaeabec6acc3b70951bf4 (patch) | |
tree | a570d0e7a2d629cbfd10f422bc0753d7255f9562 /libcxx/test/std/containers | |
parent | d3bbc06ac79fd1500b40b2a60b262e204ff3dfe3 (diff) | |
download | bcm5719-llvm-f814dcbafbabd46a1babaeabec6acc3b70951bf4.tar.gz bcm5719-llvm-f814dcbafbabd46a1babaeabec6acc3b70951bf4.zip |
Make forward_list::remove/remove_if/unique all return void before C++20; undoes that bit of D58332. Thanks to Mikhail Maltsev for pointing this out
llvm-svn: 365290
Diffstat (limited to 'libcxx/test/std/containers')
4 files changed, 124 insertions, 62 deletions
diff --git a/libcxx/test/std/containers/sequences/forwardlist/forwardlist.ops/remove.pass.cpp b/libcxx/test/std/containers/sequences/forwardlist/forwardlist.ops/remove.pass.cpp index 87f3050b745..c475468549c 100644 --- a/libcxx/test/std/containers/sequences/forwardlist/forwardlist.ops/remove.pass.cpp +++ b/libcxx/test/std/containers/sequences/forwardlist/forwardlist.ops/remove.pass.cpp @@ -8,7 +8,8 @@ // <forward_list> -// void remove(const value_type& v); +// void remove(const value_type& v); // C++17 and before +// size_type remove(const value_type& v); // C++20 and after #include <forward_list> #include <iterator> @@ -17,6 +18,21 @@ #include "test_macros.h" #include "min_allocator.h" +template <class L> +void do_remove(L &l, const typename L::value_type &value, typename L::size_type expected) +{ + typename L::size_type old_size = std::distance(l.begin(), l.end()); +#if TEST_STD_VER > 17 + ASSERT_SAME_TYPE(decltype(l.remove(value)), typename L::size_type); + assert(l.remove(value) == expected); +#else + ASSERT_SAME_TYPE(decltype(l.remove(value)), void); + l.remove(value); +#endif + assert(old_size - std::distance(l.begin(), l.end()) == expected); +} + + struct S { S(int i) : i_(new int(i)) {} S(const S &rhs) : i_(new int(*rhs.i_)) {} @@ -37,7 +53,7 @@ int main(int, char**) const T t2[] = {5, 5, 5}; C c1(std::begin(t1), std::end(t1)); C c2(std::begin(t2), std::end(t2)); - assert(c1.remove(0) == 4); + do_remove(c1, 0, 4); assert(c1 == c2); } { @@ -46,7 +62,7 @@ int main(int, char**) const T t1[] = {0, 0, 0, 0}; C c1(std::begin(t1), std::end(t1)); C c2; - assert(c1.remove(0) == 4); + do_remove(c1, 0, 4); assert(c1 == c2); } { @@ -56,7 +72,7 @@ int main(int, char**) const T t2[] = {5, 5, 5}; C c1(std::begin(t1), std::end(t1)); C c2(std::begin(t2), std::end(t2)); - assert(c1.remove(0) == 0); + do_remove(c1, 0, 0); assert(c1 == c2); } { @@ -64,7 +80,7 @@ int main(int, char**) typedef std::forward_list<T> C; C c1; C c2; - assert(c1.remove(0) == 0); + do_remove(c1, 0, 0); assert(c1 == c2); } { @@ -74,7 +90,7 @@ int main(int, char**) const T t2[] = {5, 5, 5}; C c1(std::begin(t1), std::end(t1)); C c2(std::begin(t2), std::end(t2)); - assert(c1.remove(0) == 1); + do_remove(c1, 0, 1); assert(c1 == c2); } { // LWG issue #526 @@ -84,7 +100,7 @@ int main(int, char**) int t2[] = { 2, 3, 5, 8, 11}; C c1(std::begin(t1), std::end(t1)); C c2(std::begin(t2), std::end(t2)); - assert(c1.remove(c1.front()) == 2); + do_remove(c1, c1.front(), 2); assert(c1 == c2); } { @@ -95,7 +111,7 @@ int main(int, char**) C c; for(int *ip = std::end(t1); ip != std::begin(t1);) c.push_front(S(*--ip)); - assert(c.remove(c.front()) == 3); + do_remove(c, c.front(), 3); C::const_iterator it = c.begin(); for(int *ip = std::begin(t2); ip != std::end(t2); ++ip, ++it) { assert ( it != c.end()); @@ -111,7 +127,7 @@ int main(int, char**) const T t2[] = {5, 5, 5}; C c1(std::begin(t1), std::end(t1)); C c2(std::begin(t2), std::end(t2)); - assert(c1.remove(0) == 4); + do_remove(c1, 0, 4); assert(c1 == c2); } { @@ -120,7 +136,7 @@ int main(int, char**) const T t1[] = {0, 0, 0, 0}; C c1(std::begin(t1), std::end(t1)); C c2; - assert(c1.remove(0) == 4); + do_remove(c1, 0, 4); assert(c1 == c2); } { @@ -130,7 +146,7 @@ int main(int, char**) const T t2[] = {5, 5, 5}; C c1(std::begin(t1), std::end(t1)); C c2(std::begin(t2), std::end(t2)); - assert(c1.remove(0) == 0); + do_remove(c1, 0, 0); assert(c1 == c2); } { @@ -138,7 +154,7 @@ int main(int, char**) typedef std::forward_list<T, min_allocator<T>> C; C c1; C c2; - assert(c1.remove(0) == 0); + do_remove(c1, 0, 0); assert(c1 == c2); } { @@ -148,7 +164,7 @@ int main(int, char**) const T t2[] = {5, 5, 5}; C c1(std::begin(t1), std::end(t1)); C c2(std::begin(t2), std::end(t2)); - assert(c1.remove(0) == 1); + do_remove(c1, 0, 1); assert(c1 == c2); } #endif diff --git a/libcxx/test/std/containers/sequences/forwardlist/forwardlist.ops/remove_if.pass.cpp b/libcxx/test/std/containers/sequences/forwardlist/forwardlist.ops/remove_if.pass.cpp index 486d355146c..a5cb1388e23 100644 --- a/libcxx/test/std/containers/sequences/forwardlist/forwardlist.ops/remove_if.pass.cpp +++ b/libcxx/test/std/containers/sequences/forwardlist/forwardlist.ops/remove_if.pass.cpp @@ -8,7 +8,8 @@ // <forward_list> -// template <class Predicate> void remove_if(Predicate pred); +// template <class Predicate> void remove_if(Predicate pred); // C++17 and before +// template <class Predicate> size_type remove_if(Predicate pred); // C++20 and after #include <forward_list> #include <iterator> @@ -20,15 +21,29 @@ #include "counting_predicates.hpp" +template <class L, class Predicate> +void do_remove_if(L &l, Predicate pred, typename L::size_type expected) +{ + typename L::size_type old_size = std::distance(l.begin(), l.end()); +#if TEST_STD_VER > 17 + ASSERT_SAME_TYPE(decltype(l.remove_if(pred)), typename L::size_type); + assert(l.remove_if(pred) == expected); +#else + ASSERT_SAME_TYPE(decltype(l.remove_if(pred)), void); + l.remove_if(pred); +#endif + assert(old_size - std::distance(l.begin(), l.end()) == expected); +} + bool g(int i) { return i < 3; } -struct PredLWG529 { - PredLWG529 (int i) : i_(i) {}; - ~PredLWG529() { i_ = -32767; } - bool operator() (const PredLWG529 &p) const { return p.i_ == i_; } +struct PredLWG526 { + PredLWG526 (int i) : i_(i) {}; + ~PredLWG526() { i_ = -32767; } + bool operator() (const PredLWG526 &p) const { return p.i_ == i_; } bool operator==(int i) const { return i == i_;} int i_; @@ -45,7 +60,7 @@ int main(int, char**) C c1(std::begin(t1), std::end(t1)); C c2(std::begin(t2), std::end(t2)); Predicate cp(g); - assert(c1.remove_if(std::ref(cp)) == 4); + do_remove_if(c1, std::ref(cp), 4); assert(c1 == c2); assert(cp.count() == static_cast<std::size_t>(std::distance(std::begin(t1), std::end(t1)))); } @@ -57,7 +72,7 @@ int main(int, char**) C c1(std::begin(t1), std::end(t1)); C c2; Predicate cp(g); - assert(c1.remove_if(std::ref(cp)) == 4); + do_remove_if(c1, std::ref(cp), 4); assert(c1 == c2); assert(cp.count() == static_cast<std::size_t>(std::distance(std::begin(t1), std::end(t1)))); } @@ -70,7 +85,7 @@ int main(int, char**) C c1(std::begin(t1), std::end(t1)); C c2(std::begin(t2), std::end(t2)); Predicate cp(g); - assert(c1.remove_if(std::ref(cp)) == 0); + do_remove_if(c1, std::ref(cp), 0); assert(c1 == c2); assert(cp.count() == static_cast<std::size_t>(std::distance(std::begin(t1), std::end(t1)))); } @@ -81,7 +96,7 @@ int main(int, char**) C c1; C c2; Predicate cp(g); - assert(c1.remove_if(std::ref(cp)) == 0); + do_remove_if(c1, std::ref(cp), 0); assert(c1 == c2); assert(cp.count() == 0); } @@ -94,7 +109,7 @@ int main(int, char**) C c1(std::begin(t1), std::end(t1)); C c2(std::begin(t2), std::end(t2)); Predicate cp(g); - assert(c1.remove_if(std::ref(cp)) == 1); + do_remove_if(c1, std::ref(cp), 1); assert(c1 == c2); assert(cp.count() == static_cast<std::size_t>(std::distance(std::begin(t1), std::end(t1)))); } @@ -102,8 +117,8 @@ int main(int, char**) { // LWG issue #526 int a1[] = {1, 2, 1, 3, 5, 8, 11}; int a2[] = { 2, 3, 5, 8, 11}; - std::forward_list<PredLWG529> c(a1, a1 + 7); - c.remove_if(std::ref(c.front())); + std::forward_list<PredLWG526> c(a1, a1 + 7); + do_remove_if(c, std::ref(c.front()), 2); for (size_t i = 0; i < 5; ++i) { assert(!c.empty()); @@ -123,7 +138,7 @@ int main(int, char**) C c1(std::begin(t1), std::end(t1)); C c2(std::begin(t2), std::end(t2)); Predicate cp(g); - assert(c1.remove_if(std::ref(cp)) == 4); + do_remove_if(c1, std::ref(cp), 4); assert(c1 == c2); assert(cp.count() == static_cast<std::size_t>(std::distance(std::begin(t1), std::end(t1)))); } @@ -135,7 +150,7 @@ int main(int, char**) C c1(std::begin(t1), std::end(t1)); C c2; Predicate cp(g); - assert(c1.remove_if(std::ref(cp)) == 4); + do_remove_if(c1, std::ref(cp), 4); assert(c1 == c2); assert(cp.count() == static_cast<std::size_t>(std::distance(std::begin(t1), std::end(t1)))); } @@ -148,7 +163,7 @@ int main(int, char**) C c1(std::begin(t1), std::end(t1)); C c2(std::begin(t2), std::end(t2)); Predicate cp(g); - assert(c1.remove_if(std::ref(cp)) == 0); + do_remove_if(c1, std::ref(cp), 0); assert(c1 == c2); assert(cp.count() == static_cast<std::size_t>(std::distance(std::begin(t1), std::end(t1)))); } @@ -159,7 +174,7 @@ int main(int, char**) C c1; C c2; Predicate cp(g); - assert(c1.remove_if(std::ref(cp)) == 0); + do_remove_if(c1, std::ref(cp), 0); assert(c1 == c2); assert(cp.count() == 0); } @@ -172,7 +187,7 @@ int main(int, char**) C c1(std::begin(t1), std::end(t1)); C c2(std::begin(t2), std::end(t2)); Predicate cp(g); - assert(c1.remove_if(std::ref(cp)) == 1); + do_remove_if(c1, std::ref(cp), 1); assert(c1 == c2); assert(cp.count() == static_cast<std::size_t>(std::distance(std::begin(t1), std::end(t1)))); } diff --git a/libcxx/test/std/containers/sequences/forwardlist/forwardlist.ops/unique.pass.cpp b/libcxx/test/std/containers/sequences/forwardlist/forwardlist.ops/unique.pass.cpp index 32aa8f94a1f..793fcf382da 100644 --- a/libcxx/test/std/containers/sequences/forwardlist/forwardlist.ops/unique.pass.cpp +++ b/libcxx/test/std/containers/sequences/forwardlist/forwardlist.ops/unique.pass.cpp @@ -8,7 +8,8 @@ // <forward_list> -// void unique(); +// void unique(); // C++17 and before +// size_type unique(); // C++20 and after #include <forward_list> #include <iterator> @@ -17,6 +18,20 @@ #include "test_macros.h" #include "min_allocator.h" +template <class L> +void do_unique(L &l, typename L::size_type expected) +{ + typename L::size_type old_size = std::distance(l.begin(), l.end()); +#if TEST_STD_VER > 17 + ASSERT_SAME_TYPE(decltype(l.unique()), typename L::size_type); + assert(l.unique() == expected); +#else + ASSERT_SAME_TYPE(decltype(l.unique()), void); + l.unique(); +#endif + assert(old_size - std::distance(l.begin(), l.end()) == expected); +} + int main(int, char**) { { @@ -26,7 +41,7 @@ int main(int, char**) const T t2[] = {0, 5, 0, 5}; C c1(std::begin(t1), std::end(t1)); C c2(std::begin(t2), std::end(t2)); - assert(c1.unique() == 3); + do_unique(c1, 3); assert(c1 == c2); } { @@ -36,7 +51,7 @@ int main(int, char**) const T t2[] = {0}; C c1(std::begin(t1), std::end(t1)); C c2(std::begin(t2), std::end(t2)); - assert(c1.unique() == 3); + do_unique(c1, 3); assert(c1 == c2); } { @@ -46,7 +61,7 @@ int main(int, char**) const T t2[] = {5}; C c1(std::begin(t1), std::end(t1)); C c2(std::begin(t2), std::end(t2)); - assert(c1.unique() == 2); + do_unique(c1, 2); assert(c1 == c2); } { @@ -54,7 +69,7 @@ int main(int, char**) typedef std::forward_list<T> C; C c1; C c2; - assert(c1.unique() == 0); + do_unique(c1, 0); assert(c1 == c2); } { @@ -64,7 +79,7 @@ int main(int, char**) const T t2[] = {5, 0}; C c1(std::begin(t1), std::end(t1)); C c2(std::begin(t2), std::end(t2)); - assert(c1.unique() == 2); + do_unique(c1, 2); assert(c1 == c2); } #if TEST_STD_VER >= 11 @@ -75,7 +90,7 @@ int main(int, char**) const T t2[] = {0, 5, 0, 5}; C c1(std::begin(t1), std::end(t1)); C c2(std::begin(t2), std::end(t2)); - assert(c1.unique() == 3); + do_unique(c1, 3); assert(c1 == c2); } { @@ -85,7 +100,7 @@ int main(int, char**) const T t2[] = {0}; C c1(std::begin(t1), std::end(t1)); C c2(std::begin(t2), std::end(t2)); - assert(c1.unique() == 3); + do_unique(c1, 3); assert(c1 == c2); } { @@ -95,7 +110,7 @@ int main(int, char**) const T t2[] = {5}; C c1(std::begin(t1), std::end(t1)); C c2(std::begin(t2), std::end(t2)); - assert(c1.unique() == 2); + do_unique(c1, 2); assert(c1 == c2); } { @@ -103,7 +118,7 @@ int main(int, char**) typedef std::forward_list<T, min_allocator<T>> C; C c1; C c2; - assert(c1.unique() == 0); + do_unique(c1, 0); assert(c1 == c2); } { @@ -113,7 +128,7 @@ int main(int, char**) const T t2[] = {5, 0}; C c1(std::begin(t1), std::end(t1)); C c2(std::begin(t2), std::end(t2)); - assert(c1.unique() == 2); + do_unique(c1, 2); assert(c1 == c2); } #endif diff --git a/libcxx/test/std/containers/sequences/forwardlist/forwardlist.ops/unique_pred.pass.cpp b/libcxx/test/std/containers/sequences/forwardlist/forwardlist.ops/unique_pred.pass.cpp index 84a825e3668..ce0e1efa3cf 100644 --- a/libcxx/test/std/containers/sequences/forwardlist/forwardlist.ops/unique_pred.pass.cpp +++ b/libcxx/test/std/containers/sequences/forwardlist/forwardlist.ops/unique_pred.pass.cpp @@ -8,7 +8,8 @@ // <forward_list> -// template <class BinaryPredicate> void unique(BinaryPredicate binary_pred); +// template <class BinaryPredicate> void unique(BinaryPredicate binary_pred); // C++17 and before +// template <class BinaryPredicate> size_type unique(BinaryPredicate binary_pred); // C++20 and after #include <forward_list> #include <iterator> @@ -17,10 +18,25 @@ #include "test_macros.h" #include "min_allocator.h" -struct PredLWG529 { - PredLWG529 (int i) : i_(i) {}; - ~PredLWG529() { i_ = -32767; } - bool operator() (const PredLWG529 &lhs, const PredLWG529 &rhs) const { return lhs.i_ == rhs.i_; } +template <class L, class Predicate> +void do_unique(L &l, Predicate pred, typename L::size_type expected) +{ + typename L::size_type old_size = std::distance(l.begin(), l.end()); +#if TEST_STD_VER > 17 + ASSERT_SAME_TYPE(decltype(l.unique(pred)), typename L::size_type); + assert(l.unique(pred) == expected); +#else + ASSERT_SAME_TYPE(decltype(l.unique(pred)), void); + l.unique(pred); +#endif + assert(old_size - std::distance(l.begin(), l.end()) == expected); +} + + +struct PredLWG526 { + PredLWG526 (int i) : i_(i) {}; + ~PredLWG526() { i_ = -32767; } + bool operator() (const PredLWG526 &lhs, const PredLWG526 &rhs) const { return lhs.i_ == rhs.i_; } bool operator==(int i) const { return i == i_;} int i_; @@ -41,7 +57,7 @@ int main(int, char**) const T t2[] = {0, 5, 0, 5}; C c1(std::begin(t1), std::end(t1)); C c2(std::begin(t2), std::end(t2)); - c1.unique(g); + do_unique(c1, g, 3); assert(c1 == c2); } { @@ -51,7 +67,7 @@ int main(int, char**) const T t2[] = {0}; C c1(std::begin(t1), std::end(t1)); C c2(std::begin(t2), std::end(t2)); - c1.unique(g); + do_unique(c1, g, 3); assert(c1 == c2); } { @@ -61,7 +77,7 @@ int main(int, char**) const T t2[] = {5}; C c1(std::begin(t1), std::end(t1)); C c2(std::begin(t2), std::end(t2)); - c1.unique(g); + do_unique(c1, g, 2); assert(c1 == c2); } { @@ -69,7 +85,7 @@ int main(int, char**) typedef std::forward_list<T> C; C c1; C c2; - c1.unique(g); + do_unique(c1, g, 0); assert(c1 == c2); } { @@ -79,22 +95,22 @@ int main(int, char**) const T t2[] = {5, 0}; C c1(std::begin(t1), std::end(t1)); C c2(std::begin(t2), std::end(t2)); - c1.unique(g); + do_unique(c1, g, 2); assert(c1 == c2); } { // LWG issue #526 int a1[] = {1, 1, 1, 2, 3, 5, 2, 11}; int a2[] = {1, 2, 3, 5, 2, 11}; - std::forward_list<PredLWG529> c(a1, a1 + 8); - c.unique(std::ref(c.front())); + std::forward_list<PredLWG526> c1(a1, a1 + 8); + do_unique(c1, std::ref(c1.front()), 2); for (size_t i = 0; i < 6; ++i) { - assert(!c.empty()); - assert(c.front() == a2[i]); - c.pop_front(); + assert(!c1.empty()); + assert(c1.front() == a2[i]); + c1.pop_front(); } - assert(c.empty()); + assert(c1.empty()); } #if TEST_STD_VER >= 11 @@ -105,7 +121,7 @@ int main(int, char**) const T t2[] = {0, 5, 0, 5}; C c1(std::begin(t1), std::end(t1)); C c2(std::begin(t2), std::end(t2)); - c1.unique(g); + do_unique(c1, g, 3); assert(c1 == c2); } { @@ -115,7 +131,7 @@ int main(int, char**) const T t2[] = {0}; C c1(std::begin(t1), std::end(t1)); C c2(std::begin(t2), std::end(t2)); - c1.unique(g); + do_unique(c1, g, 3); assert(c1 == c2); } { @@ -125,7 +141,7 @@ int main(int, char**) const T t2[] = {5}; C c1(std::begin(t1), std::end(t1)); C c2(std::begin(t2), std::end(t2)); - c1.unique(g); + do_unique(c1, g, 2); assert(c1 == c2); } { @@ -133,7 +149,7 @@ int main(int, char**) typedef std::forward_list<T, min_allocator<T>> C; C c1; C c2; - c1.unique(g); + do_unique(c1, g, 0); assert(c1 == c2); } { @@ -143,7 +159,7 @@ int main(int, char**) const T t2[] = {5, 0}; C c1(std::begin(t1), std::end(t1)); C c2(std::begin(t2), std::end(t2)); - c1.unique(g); + do_unique(c1, g, 2); assert(c1 == c2); } #endif |