forked from boostorg/mp11
42 lines
1.2 KiB
Plaintext
42 lines
1.2 KiB
Plaintext
# Boost.Mp11 Library Test Jamfile
|
|
#
|
|
# Copyright 2015 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
|
|
|
|
import testing ;
|
|
import ../../config/checks/config : requires ;
|
|
|
|
REQ = ; #[ requires cxx11_variadic_templates cxx11_template_aliases cxx11_hdr_type_traits cxx11_hdr_tuple ] ;
|
|
|
|
# list
|
|
run mp_size.cpp : : : $(REQ) ;
|
|
run mp_empty.cpp : : : $(REQ) ;
|
|
run mp_front.cpp : : : $(REQ) ;
|
|
run mp_pop_front.cpp : : : $(REQ) ;
|
|
run mp_second.cpp : : : $(REQ) ;
|
|
run mp_third.cpp : : : $(REQ) ;
|
|
run mp_push_front.cpp : : : $(REQ) ;
|
|
run mp_push_back.cpp : : : $(REQ) ;
|
|
run mp_rename.cpp : : : $(REQ) ;
|
|
run mp_append.cpp : : : $(REQ) ;
|
|
run mp_assign.cpp : : : $(REQ) ;
|
|
run mp_clear.cpp : : : $(REQ) ;
|
|
#run mp_transform.cpp : : : $(REQ) ;
|
|
run mp_fill.cpp : : : $(REQ) ;
|
|
#run mp_count.cpp : : : $(REQ) ;
|
|
#run mp_count_if.cpp : : : $(REQ) ;
|
|
#run mp_contains.cpp : : : $(REQ) ;
|
|
run mp_repeat.cpp : : : $(REQ) ;
|
|
|
|
# integral
|
|
run integral.cpp : : : $(REQ) ;
|
|
|
|
# utility
|
|
run mp_identity.cpp : : : $(REQ) ;
|
|
run mp_inherit.cpp : : : $(REQ) ;
|
|
run mp_if.cpp : : : $(REQ) ;
|
|
run mp_eval_if.cpp : : : $(REQ) ;
|