mirror of
https://github.com/boostorg/functional.git
synced 2026-01-26 08:52:27 +01:00
To remove the dependency on Boost.Optional. Supplied a macro for backwards compatibility, but that will be removed in a future release.
23 lines
757 B
Plaintext
23 lines
757 B
Plaintext
|
|
# (C) Copyright Tobias Schwinger
|
|
#
|
|
# Use modification and distribution are subject to the boost Software License,
|
|
# Version 1.0. (See http:/\/www.boost.org/LICENSE_1_0.txt).
|
|
|
|
import testing ;
|
|
|
|
project factory-tests
|
|
;
|
|
|
|
test-suite functional/factory
|
|
:
|
|
[ run value_factory.cpp ]
|
|
[ run factory.cpp ]
|
|
[ run factory_with_allocator.cpp ]
|
|
[ compile-fail factory_with_none_t.cpp ]
|
|
[ run factory.cpp : : : <define>BOOST_FUNCTIONAL_FACTORY_SUPPORT_NONE_T : none_t_factory ]
|
|
[ run factory_with_allocator.cpp : : : <define>BOOST_FUNCTIONAL_FACTORY_SUPPORT_NONE_T : none_t_factory_with_allocator ]
|
|
[ run factory_with_none_t.cpp : : : <define>BOOST_FUNCTIONAL_FACTORY_SUPPORT_NONE_T : none_t_factory_with_none_t ]
|
|
;
|
|
|