]> git.proxmox.com Git - ceph.git/blame - ceph/src/boost/libs/functional/factory/test/Jamfile
update sources to ceph Nautilus 14.2.1
[ceph.git] / ceph / src / boost / libs / functional / factory / test / Jamfile
CommitLineData
7c673cae
FG
1
2# (C) Copyright Tobias Schwinger
3#
4# Use modification and distribution are subject to the boost Software License,
5# Version 1.0. (See http:/\/www.boost.org/LICENSE_1_0.txt).
6
7import testing ;
8
9project factory-tests
10 ;
11
12test-suite functional/factory
13 :
14 [ run value_factory.cpp ]
15 [ run factory.cpp ]
16 [ run factory_with_allocator.cpp ]
11fdf7f2 17 [ run factory_with_std_allocator.cpp ]
7c673cae
FG
18 [ compile-fail factory_with_none_t.cpp ]
19 [ run factory.cpp : : : <define>BOOST_FUNCTIONAL_FACTORY_SUPPORT_NONE_T : none_t_factory ]
20 [ run factory_with_allocator.cpp : : : <define>BOOST_FUNCTIONAL_FACTORY_SUPPORT_NONE_T : none_t_factory_with_allocator ]
11fdf7f2 21 [ run factory_with_std_allocator.cpp : : : <define>BOOST_FUNCTIONAL_FACTORY_SUPPORT_NONE_T : none_t_factory_with_std_allocator ]
7c673cae
FG
22 [ run factory_with_none_t.cpp : : : <define>BOOST_FUNCTIONAL_FACTORY_SUPPORT_NONE_T : none_t_factory_with_none_t ]
23 ;
24