1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139
|
//////////////////////////////////////////////////////////////////////////////
//
// (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.
//
//////////////////////////////////////////////////////////////////////////////
#define BOOST_ENABLE_ASSERT_HANDLER
#include <boost/container/static_vector.hpp>
#include <boost/core/lightweight_test.hpp>
#include <new> //for bad_alloc
#include <boost/assert.hpp>
#include <cstdlib>
using namespace boost::container;
//User-defined assertion to test throw_on_overflow
struct throw_on_overflow_off
{};
namespace boost {
void assertion_failed(char const *, char const *, char const *, long)
{
#ifdef BOOST_NO_EXCEPTIONS
std::abort();
#else
throw throw_on_overflow_off();
#endif
}
void assertion_failed_msg(char const *, char const *, char const *, char const *, long )
{
#ifdef BOOST_NO_EXCEPTIONS
std::abort();
#else
throw throw_on_overflow_off();
#endif
}
}
void test_alignment()
{
const std::size_t Capacity = 10u;
{ //extended alignment
const std::size_t extended_alignment = sizeof(int)*4u;
BOOST_STATIC_ASSERT(extended_alignment > dtl::alignment_of<int>::value);
#if !defined(BOOST_NO_CXX11_TEMPLATE_ALIASES)
using options_t = static_vector_options_t< inplace_alignment<extended_alignment> >;
#else
typedef static_vector_options
< inplace_alignment<extended_alignment> >::type options_t;
#endif
static_vector<int, Capacity, options_t> v;
v.resize(v.capacity());
BOOST_ASSERT((reinterpret_cast<std::size_t>(&v[0]) % extended_alignment) == 0);
}
{ //default alignment
#if !defined(BOOST_NO_CXX11_TEMPLATE_ALIASES)
using options_t = static_vector_options_t< inplace_alignment<0> >;
#else
typedef static_vector_options< inplace_alignment<0> >::type options_t;
#endif
static_vector<int, Capacity, options_t> v;
v.resize(v.capacity());
BOOST_ASSERT((reinterpret_cast<std::size_t>(&v[0]) % dtl::alignment_of<int>::value) == 0);
}
}
void test_throw_on_overflow()
{
#if !defined(BOOST_NO_EXCEPTIONS)
const std::size_t Capacity = 10u;
{ //throw_on_overflow == true, expect bad_alloc
#if !defined(BOOST_NO_CXX11_TEMPLATE_ALIASES)
using options_t = static_vector_options_t< throw_on_overflow<true> >;
#else
typedef static_vector_options
< throw_on_overflow<true> >::type options_t;
#endif
static_vector<int, Capacity, options_t> v;
v.resize(Capacity);
bool expected_type_thrown = false;
BOOST_CONTAINER_TRY{
v.push_back(0);
}
BOOST_CONTAINER_CATCH(bad_alloc_t&)
{
expected_type_thrown = true;
}
BOOST_CONTAINER_CATCH(...)
{}
BOOST_CONTAINER_CATCH_END
BOOST_TEST(expected_type_thrown == true);
BOOST_TEST(v.capacity() == Capacity);
}
{ //throw_on_overflow == false, test it through BOOST_ASSERT
//even in release mode (BOOST_ENABLE_ASSERT_HANDLER), and throwing
//a special type in that assertion.
#if !defined(BOOST_NO_CXX11_TEMPLATE_ALIASES)
using options_t = static_vector_options_t< throw_on_overflow<false> >;
#else
typedef static_vector_options< throw_on_overflow<false> >::type options_t;
#endif
static_vector<int, Capacity, options_t> v;
v.resize(Capacity);
bool expected_type_thrown = false;
BOOST_CONTAINER_TRY{
v.push_back(0);
}
BOOST_CONTAINER_CATCH(throw_on_overflow_off)
{
expected_type_thrown = true;
}
BOOST_CONTAINER_CATCH(...)
{}
BOOST_CONTAINER_CATCH_END
BOOST_TEST(expected_type_thrown == true);
BOOST_TEST(v.capacity() == Capacity);
}
#endif
}
int main()
{
test_alignment();
test_throw_on_overflow();
return ::boost::report_errors();
}
|