2014-06-01 01:48:14 +03:00
|
|
|
# Boost.Core Library test Jamfile
|
|
|
|
|
#
|
|
|
|
|
# Copyright (c) 2014 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
|
|
|
|
|
|
|
|
|
|
# bring in rules for testing
|
|
|
|
|
import testing ;
|
|
|
|
|
|
|
|
|
|
test-suite "core"
|
|
|
|
|
:
|
|
|
|
|
[ run addressof_test.cpp ]
|
|
|
|
|
[ run addressof_test2.cpp ]
|
|
|
|
|
[ run addressof_np_test.cpp ]
|
|
|
|
|
[ run addressof_fn_test.cpp ]
|
2014-06-01 02:10:28 +03:00
|
|
|
|
2014-06-03 21:02:36 +03:00
|
|
|
[ run checked_delete_test.cpp ]
|
2014-06-01 01:48:14 +03:00
|
|
|
[ compile-fail checked_delete_fail.cpp ]
|
2014-06-03 21:02:36 +03:00
|
|
|
[ compile-fail checked_delete_fail2.cpp ]
|
2014-06-01 02:10:28 +03:00
|
|
|
|
2014-06-01 01:48:14 +03:00
|
|
|
[ compile ref_ct_test.cpp ]
|
|
|
|
|
[ run ref_test.cpp ]
|
2014-06-01 02:10:28 +03:00
|
|
|
|
|
|
|
|
[ run eif_constructors.cpp ]
|
|
|
|
|
[ run eif_dummy_arg_disambiguation.cpp ]
|
|
|
|
|
[ run eif_lazy.cpp ]
|
|
|
|
|
[ run eif_lazy_test.cpp ]
|
|
|
|
|
[ run eif_member_templates.cpp ]
|
|
|
|
|
[ run eif_namespace_disambiguation.cpp ]
|
|
|
|
|
[ run eif_no_disambiguation.cpp ]
|
|
|
|
|
[ run eif_partial_specializations.cpp ]
|
2014-06-01 22:39:38 +04:00
|
|
|
|
|
|
|
|
[ run explicit_operator_bool.cpp ]
|
|
|
|
|
[ run explicit_operator_bool_noexcept.cpp ]
|
|
|
|
|
[ compile-fail explicit_operator_bool_compile_fail_conv_int.cpp ]
|
|
|
|
|
[ compile-fail explicit_operator_bool_compile_fail_conv_pvoid.cpp ]
|
|
|
|
|
[ compile-fail explicit_operator_bool_compile_fail_delete.cpp ]
|
|
|
|
|
[ compile-fail explicit_operator_bool_compile_fail_shift.cpp ]
|
2014-06-02 15:06:53 +02:00
|
|
|
|
2014-06-02 21:46:40 +02:00
|
|
|
[ compile ignore_unused_test.cpp : <toolset>gcc-4.8:<cxxflags>"-Wunused-variable -Wunused-local-typedefs -Werror"
|
|
|
|
|
<toolset>gcc:<cxxflags>"-Wunused-variable -Werror"
|
2014-06-02 15:06:53 +02:00
|
|
|
<toolset>clang:<cxxflags>"-Wunused-variable -Werror"
|
|
|
|
|
<toolset>msvc:<cxxflags>"/we4100 /we4101" ]
|
2014-06-03 20:40:49 +03:00
|
|
|
[ run sp_typeinfo_test.cpp ]
|
|
|
|
|
[ run sp_typeinfo_test.cpp : : : <rtti>off : sp_typeinfo_test_no_rtti ]
|
2014-06-03 21:02:36 +03:00
|
|
|
|
|
|
|
|
[ run visit_each_test.cpp ]
|
2014-06-03 21:08:55 +03:00
|
|
|
|
|
|
|
|
[ run get_pointer_test.cpp ]
|
2014-06-01 01:48:14 +03:00
|
|
|
;
|