//===----------------------------------------------------------------------===// // // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. // See https://llvm.org/LICENSE.txt for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // //===----------------------------------------------------------------------===// // UNSUPPORTED: c++03 // // vector(vector&& c); #include #include #include "test_macros.h" #include "test_allocator.h" #include "min_allocator.h" int main(int, char**) { { std::vector > l(test_allocator(5)); std::vector > lo(test_allocator(5)); for (int i = 1; i <= 3; ++i) { l.push_back(true); lo.push_back(true); } std::vector > l2 = std::move(l); assert(l2 == lo); assert(l.empty()); assert(l2.get_allocator() == lo.get_allocator()); } { std::vector > l(other_allocator(5)); std::vector > lo(other_allocator(5)); for (int i = 1; i <= 3; ++i) { l.push_back(true); lo.push_back(true); } std::vector > l2 = std::move(l); assert(l2 == lo); assert(l.empty()); assert(l2.get_allocator() == lo.get_allocator()); } { std::vector > l(min_allocator{}); std::vector > lo(min_allocator{}); for (int i = 1; i <= 3; ++i) { l.push_back(true); lo.push_back(true); } std::vector > l2 = std::move(l); assert(l2 == lo); assert(l.empty()); assert(l2.get_allocator() == lo.get_allocator()); } { test_alloc_base::clear(); using Vect = std::vector >; using AllocT = Vect::allocator_type; Vect v(test_allocator(42, 101)); assert(test_alloc_base::count == 1); { const AllocT& a = v.get_allocator(); assert(test_alloc_base::count == 2); assert(a.get_data() == 42); assert(a.get_id() == 101); } assert(test_alloc_base::count == 1); test_alloc_base::clear_ctor_counters(); Vect v2 = std::move(v); assert(test_alloc_base::count == 2); assert(test_alloc_base::copied == 0); assert(test_alloc_base::moved == 1); { const AllocT& a = v.get_allocator(); assert(a.get_id() == test_alloc_base::moved_value); assert(a.get_data() == test_alloc_base::moved_value); } { const AllocT& a = v2.get_allocator(); assert(a.get_id() == 101); assert(a.get_data() == 42); } } return 0; }