////////////////////////////////////////////////////////////////////////////// // // (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 using namespace boost::container; template void test_stored_size_type_impl() { VectorType v; typedef typename VectorType::size_type size_type; typedef typename VectorType::value_type value_type; size_type const max = Unsigned(-1); v.resize(5); v.resize(max); BOOST_TEST_THROWS(v.resize(max+1), std::exception); BOOST_TEST_THROWS(v.push_back(value_type(1)), std::exception); BOOST_TEST_THROWS(v.insert(v.begin(), value_type(1)), std::exception); BOOST_TEST_THROWS(v.emplace(v.begin(), value_type(1)),std::exception); BOOST_TEST_THROWS(v.reserve(max+1), std::exception); BOOST_TEST_THROWS(VectorType v2(max+1), std::exception); } template void test_stored_size_type() { #if !defined(BOOST_NO_CXX11_TEMPLATE_ALIASES) using options_t = vector_options_t< stored_size >; #else typedef typename vector_options < stored_size >::type options_t; #endif //Test first with a typical allocator { typedef vector, options_t> vector_t; test_stored_size_type_impl(); } //Test with a V2 allocator { typedef vector, options_t> vector_t; test_stored_size_type_impl(); } } void test_growth_factor_50() { #if !defined(BOOST_NO_CXX11_TEMPLATE_ALIASES) using options_t = vector_options_t< growth_factor >; #else typedef vector_options < growth_factor >::type options_t; #endif vector, options_t> v; v.resize(5); v.resize(v.capacity()); std::size_t old_capacity = v.capacity(); v.push_back(0); std::size_t new_capacity = v.capacity(); BOOST_TEST(new_capacity == old_capacity + old_capacity/2); } void test_growth_factor_60() { #if !defined(BOOST_NO_CXX11_TEMPLATE_ALIASES) using options_t = vector_options_t< growth_factor >; #else typedef vector_options < growth_factor >::type options_t; #endif vector, options_t> v; v.resize(5); v.resize(v.capacity()); std::size_t old_capacity = v.capacity(); v.push_back(0); std::size_t new_capacity = v.capacity(); BOOST_TEST(new_capacity == old_capacity + 3*old_capacity/5); } void test_growth_factor_100() { #if !defined(BOOST_NO_CXX11_TEMPLATE_ALIASES) using options_t = vector_options_t< growth_factor >; #else typedef vector_options < growth_factor >::type options_t; #endif vector, options_t> v; v.resize(5); v.resize(v.capacity()); std::size_t old_capacity = v.capacity(); v.push_back(0); std::size_t new_capacity = v.capacity(); BOOST_TEST(new_capacity == 2*old_capacity); } int main() { test_growth_factor_50(); test_growth_factor_60(); test_growth_factor_100(); test_stored_size_type(); test_stored_size_type(); return ::boost::report_errors(); }