Merge branch 'develop' into feature/local_shared_ptr

This commit is contained in:
Peter Dimov
2017-06-20 22:07:53 +03:00
2 changed files with 45 additions and 0 deletions

View File

@ -218,6 +218,8 @@ import testing ;
[ run atomic_sp_constexpr_test.cpp ]
[ run shared_ptr_fn_test.cpp ]
[ run get_deleter_test2.cpp ]
[ run get_deleter_test3.cpp ]
[ run get_deleter_array_test2.cpp ]

View File

@ -0,0 +1,43 @@
//
// shared_ptr_fn_test.cpp
//
// Copyright 2017 Peter Dimov
//
// 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
//
#include <boost/shared_ptr.hpp>
#include <boost/weak_ptr.hpp>
#include <boost/core/lightweight_test.hpp>
static void f()
{
}
struct null_deleter
{
template<class Y> void operator()( Y* ) {}
};
int main()
{
boost::shared_ptr<void()> pf( f, null_deleter() );
BOOST_TEST( pf.get() == f );
BOOST_TEST_EQ( pf.use_count(), 1 );
BOOST_TEST( boost::get_deleter<null_deleter>( pf ) != 0 );
boost::weak_ptr<void()> wp( pf );
BOOST_TEST( wp.lock().get() == f );
BOOST_TEST_EQ( wp.use_count(), 1 );
pf.reset();
BOOST_TEST( wp.lock().get() == 0 );
BOOST_TEST_EQ( wp.use_count(), 0 );
return boost::report_errors();
}