2012-11-07 14:42:10 +00:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2012 Glen Joseph Fernandes
|
|
|
|
* glenfe at live dot com
|
|
|
|
*
|
|
|
|
* Distributed under the Boost Software License,
|
|
|
|
* Version 1.0. (See accompanying file LICENSE_1_0.txt
|
|
|
|
* or copy at http://boost.org/LICENSE_1_0.txt)
|
|
|
|
*/
|
|
|
|
#include <boost/detail/lightweight_test.hpp>
|
|
|
|
#include <boost/smart_ptr/allocate_shared_array.hpp>
|
|
|
|
|
|
|
|
class type {
|
|
|
|
public:
|
|
|
|
static unsigned int instances;
|
|
|
|
explicit type(int = 0, int = 0)
|
|
|
|
: member() {
|
|
|
|
instances++;
|
|
|
|
}
|
|
|
|
~type() {
|
|
|
|
instances--;
|
|
|
|
}
|
|
|
|
private:
|
|
|
|
type(const type&);
|
|
|
|
type& operator=(const type&);
|
|
|
|
double member;
|
|
|
|
};
|
|
|
|
|
|
|
|
unsigned int type::instances = 0;
|
|
|
|
|
|
|
|
int main() {
|
|
|
|
{
|
|
|
|
boost::shared_ptr<int[][2][2]> a1 = boost::allocate_shared<int[][2][2]>(std::allocator<int>(), 2);
|
|
|
|
BOOST_TEST(a1.get() != 0);
|
|
|
|
BOOST_TEST(a1.use_count() == 1);
|
|
|
|
BOOST_TEST(a1[0][0][1] == 0);
|
|
|
|
BOOST_TEST(a1[0][1][0] == 0);
|
|
|
|
BOOST_TEST(a1[1][0][0] == 0);
|
|
|
|
}
|
|
|
|
{
|
|
|
|
boost::shared_ptr<const int[][2][2]> a1 = boost::allocate_shared<const int[][2][2]>(std::allocator<int>(), 2);
|
|
|
|
BOOST_TEST(a1.get() != 0);
|
|
|
|
BOOST_TEST(a1.use_count() == 1);
|
|
|
|
BOOST_TEST(a1[0][0][1] == 0);
|
|
|
|
BOOST_TEST(a1[0][1][0] == 0);
|
|
|
|
BOOST_TEST(a1[1][0][0] == 0);
|
|
|
|
}
|
|
|
|
BOOST_TEST(type::instances == 0);
|
|
|
|
{
|
|
|
|
boost::shared_ptr<type[][2][2]> a1 = boost::allocate_shared<type[][2][2]>(std::allocator<type>(), 2);
|
|
|
|
BOOST_TEST(a1.get() != 0);
|
|
|
|
BOOST_TEST(a1.use_count() == 1);
|
|
|
|
BOOST_TEST(type::instances == 8);
|
|
|
|
a1.reset();
|
|
|
|
BOOST_TEST(type::instances == 0);
|
|
|
|
}
|
|
|
|
BOOST_TEST(type::instances == 0);
|
|
|
|
{
|
|
|
|
boost::shared_ptr<const type[][2][2]> a1 = boost::allocate_shared<const type[][2][2]>(std::allocator<type>(), 2);
|
|
|
|
BOOST_TEST(a1.get() != 0);
|
|
|
|
BOOST_TEST(a1.use_count() == 1);
|
|
|
|
BOOST_TEST(type::instances == 8);
|
2012-11-11 19:14:50 +00:00
|
|
|
a1.reset();
|
|
|
|
BOOST_TEST(type::instances == 0);
|
2012-11-07 14:42:10 +00:00
|
|
|
}
|
2012-12-13 04:04:23 +00:00
|
|
|
#if !defined(BOOST_NO_CXX11_VARIADIC_TEMPLATES) && !defined(BOOST_NO_CXX11_RVALUE_REFERENCES)
|
2012-11-07 14:42:10 +00:00
|
|
|
BOOST_TEST(type::instances == 0);
|
|
|
|
{
|
|
|
|
boost::shared_ptr<type[][2][2]> a1 = boost::allocate_shared<type[][2][2]>(std::allocator<type>(), 2, 1, 5);
|
|
|
|
BOOST_TEST(a1.get() != 0);
|
|
|
|
BOOST_TEST(a1.use_count() == 1);
|
|
|
|
BOOST_TEST(type::instances == 8);
|
|
|
|
a1.reset();
|
|
|
|
BOOST_TEST(type::instances == 0);
|
|
|
|
}
|
2012-11-11 19:14:50 +00:00
|
|
|
BOOST_TEST(type::instances == 0);
|
|
|
|
{
|
|
|
|
boost::shared_ptr<type[2][2][2]> a1 = boost::allocate_shared<type[2][2][2]>(std::allocator<type>(), 1, 5);
|
|
|
|
BOOST_TEST(a1.get() != 0);
|
|
|
|
BOOST_TEST(a1.use_count() == 1);
|
|
|
|
BOOST_TEST(type::instances == 8);
|
|
|
|
a1.reset();
|
|
|
|
BOOST_TEST(type::instances == 0);
|
|
|
|
}
|
|
|
|
BOOST_TEST(type::instances == 0);
|
|
|
|
{
|
|
|
|
boost::shared_ptr<const type[][2][2]> a1 = boost::allocate_shared<const type[][2][2]>(std::allocator<type>(), 2, 1, 5);
|
|
|
|
BOOST_TEST(a1.get() != 0);
|
|
|
|
BOOST_TEST(a1.use_count() == 1);
|
|
|
|
BOOST_TEST(type::instances == 8);
|
|
|
|
a1.reset();
|
|
|
|
BOOST_TEST(type::instances == 0);
|
|
|
|
}
|
|
|
|
BOOST_TEST(type::instances == 0);
|
|
|
|
{
|
|
|
|
boost::shared_ptr<const type[2][2][2]> a1 = boost::allocate_shared<const type[2][2][2]>(std::allocator<type>(), 1, 5);
|
|
|
|
BOOST_TEST(a1.get() != 0);
|
|
|
|
BOOST_TEST(a1.use_count() == 1);
|
|
|
|
BOOST_TEST(type::instances == 8);
|
|
|
|
a1.reset();
|
|
|
|
BOOST_TEST(type::instances == 0);
|
|
|
|
}
|
2012-11-07 14:42:10 +00:00
|
|
|
#endif
|
2012-12-11 17:42:47 +00:00
|
|
|
{
|
|
|
|
boost::shared_ptr<int[][2][2]> a1 = boost::allocate_shared_noinit<int[][2][2]>(std::allocator<int>(), 2);
|
|
|
|
BOOST_TEST(a1.get() != 0);
|
|
|
|
BOOST_TEST(a1.use_count() == 1);
|
|
|
|
}
|
|
|
|
{
|
|
|
|
boost::shared_ptr<int[2][2][2]> a1 = boost::allocate_shared_noinit<int[2][2][2]>(std::allocator<int>());
|
|
|
|
BOOST_TEST(a1.get() != 0);
|
|
|
|
BOOST_TEST(a1.use_count() == 1);
|
|
|
|
}
|
|
|
|
{
|
|
|
|
boost::shared_ptr<const int[][2][2]> a1 = boost::allocate_shared_noinit<const int[][2][2]>(std::allocator<int>(), 2);
|
|
|
|
BOOST_TEST(a1.get() != 0);
|
|
|
|
BOOST_TEST(a1.use_count() == 1);
|
|
|
|
}
|
|
|
|
{
|
|
|
|
boost::shared_ptr<const int[2][2][2]> a1 = boost::allocate_shared_noinit<const int[2][2][2]>(std::allocator<int>());
|
|
|
|
BOOST_TEST(a1.get() != 0);
|
|
|
|
BOOST_TEST(a1.use_count() == 1);
|
|
|
|
}
|
|
|
|
BOOST_TEST(type::instances == 0);
|
|
|
|
{
|
|
|
|
boost::shared_ptr<type[][2][2]> a1 = boost::allocate_shared_noinit<type[][2][2]>(std::allocator<type>(), 2);
|
|
|
|
BOOST_TEST(a1.get() != 0);
|
|
|
|
BOOST_TEST(a1.use_count() == 1);
|
|
|
|
BOOST_TEST(type::instances == 8);
|
|
|
|
a1.reset();
|
|
|
|
BOOST_TEST(type::instances == 0);
|
|
|
|
}
|
|
|
|
BOOST_TEST(type::instances == 0);
|
|
|
|
{
|
|
|
|
boost::shared_ptr<type[2][2][2]> a1 = boost::allocate_shared_noinit<type[2][2][2]>(std::allocator<type>());
|
|
|
|
BOOST_TEST(a1.get() != 0);
|
|
|
|
BOOST_TEST(a1.use_count() == 1);
|
|
|
|
BOOST_TEST(type::instances == 8);
|
|
|
|
a1.reset();
|
|
|
|
BOOST_TEST(type::instances == 0);
|
|
|
|
}
|
|
|
|
BOOST_TEST(type::instances == 0);
|
|
|
|
{
|
|
|
|
boost::shared_ptr<const type[][2][2]> a1 = boost::allocate_shared_noinit<const type[][2][2]>(std::allocator<type>(), 2);
|
|
|
|
BOOST_TEST(a1.get() != 0);
|
|
|
|
BOOST_TEST(a1.use_count() == 1);
|
|
|
|
BOOST_TEST(type::instances == 8);
|
|
|
|
a1.reset();
|
|
|
|
BOOST_TEST(type::instances == 0);
|
|
|
|
}
|
|
|
|
BOOST_TEST(type::instances == 0);
|
|
|
|
{
|
|
|
|
boost::shared_ptr<const type[2][2][2]> a1 = boost::allocate_shared_noinit<const type[2][2][2]>(std::allocator<type>());
|
|
|
|
BOOST_TEST(a1.get() != 0);
|
|
|
|
BOOST_TEST(a1.use_count() == 1);
|
|
|
|
BOOST_TEST(type::instances == 8);
|
|
|
|
a1.reset();
|
|
|
|
BOOST_TEST(type::instances == 0);
|
|
|
|
}
|
2012-11-07 14:42:10 +00:00
|
|
|
return boost::report_errors();
|
|
|
|
}
|