forked from boostorg/smart_ptr
Add shared_ptr_fn_test
This commit is contained in:
@ -218,6 +218,8 @@ import testing ;
|
|||||||
|
|
||||||
[ run atomic_sp_constexpr_test.cpp ]
|
[ run atomic_sp_constexpr_test.cpp ]
|
||||||
|
|
||||||
|
[ run shared_ptr_fn_test.cpp ]
|
||||||
|
|
||||||
[ run get_deleter_test2.cpp ]
|
[ run get_deleter_test2.cpp ]
|
||||||
[ run get_deleter_test3.cpp ]
|
[ run get_deleter_test3.cpp ]
|
||||||
[ run get_deleter_array_test2.cpp ]
|
[ run get_deleter_array_test2.cpp ]
|
||||||
|
43
test/shared_ptr_fn_test.cpp
Normal file
43
test/shared_ptr_fn_test.cpp
Normal 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();
|
||||||
|
}
|
Reference in New Issue
Block a user