////////////////////////////////////////////////////////////////////////////// // // (C) Copyright Ion Gaztanaga 2004-2013. Distributed under the Boost // Software License, Version 1.0. (See accompanying file // LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) // // See http://www.boost.org/libs/container for documentation. // ////////////////////////////////////////////////////////////////////////////// #include #include #include #include #include #include #include #include #include #include #include "check_equal_containers.hpp" #include "movable_int.hpp" #include "expand_bwd_test_allocator.hpp" #include "expand_bwd_test_template.hpp" #include "dummy_test_allocator.hpp" #include "propagate_allocator_test.hpp" #include "vector_test.hpp" #include "default_init_test.hpp" using namespace boost::container; namespace boost { namespace container { //Explicit instantiation to detect compilation errors template class stable_vector >; template class stable_vector >; template class stable_vector >; template class stable_vector < test::movable_and_copyable_int , allocator >; template class stable_vector < test::movable_and_copyable_int , adaptive_pool >; template class stable_vector < test::movable_and_copyable_int , node_allocator >; namespace stable_vector_detail{ template class iterator; template class iterator; } //namespace stable_vector_detail{ }} class recursive_vector { public: int id_; stable_vector vector_; recursive_vector &operator=(const recursive_vector &o) { vector_ = o.vector_; return *this; } }; void recursive_vector_test()//Test for recursive types { stable_vector recursive, copy; //Test to test both move emulations if(!copy.size()){ copy = recursive; } } template struct GetAllocatorCont { template struct apply { typedef stable_vector< ValueType , typename allocator_traits ::template portable_rebind_alloc::type > type; }; }; template int test_cont_variants() { typedef typename GetAllocatorCont::template apply::type MyCont; typedef typename GetAllocatorCont::template apply::type MyMoveCont; typedef typename GetAllocatorCont::template apply::type MyCopyMoveCont; typedef typename GetAllocatorCont::template apply::type MyCopyCont; if(test::vector_test()) return 1; if(test::vector_test()) return 1; if(test::vector_test()) return 1; if(test::vector_test()) return 1; return 0; } int main() { recursive_vector_test(); { //Now test move semantics stable_vector original; stable_vector move_ctor(boost::move(original)); stable_vector move_assign; move_assign = boost::move(move_ctor); move_assign.swap(original); } //Test non-copy-move operations { stable_vector sv; sv.emplace_back(); sv.resize(10); sv.resize(1); } if(test_cont_variants< std::allocator >()){ std::cerr << "test_cont_variants< std::allocator > failed" << std::endl; return 1; } if(test_cont_variants< allocator >()){ std::cerr << "test_cont_variants< allocator > failed" << std::endl; return 1; } if(test_cont_variants< node_allocator >()){ std::cerr << "test_cont_variants< node_allocator > failed" << std::endl; return 1; } if(test_cont_variants< adaptive_pool >()){ std::cerr << "test_cont_variants< adaptive_pool > failed" << std::endl; return 1; } if(!test::default_init_test< stable_vector > >()){ std::cerr << "Default init test failed" << std::endl; return 1; } const test::EmplaceOptions Options = (test::EmplaceOptions)(test::EMPLACE_BACK | test::EMPLACE_BEFORE); if(!boost::container::test::test_emplace < stable_vector, Options>()) return 1; if(!boost::container::test::test_propagate_allocator()) return 1; return 0; } #include