mirror of
https://github.com/boostorg/array.git
synced 2025-06-30 22:41:03 +02:00
68 lines
1.4 KiB
Plaintext
68 lines
1.4 KiB
Plaintext
#~ Copyright Rene Rivera 2008
|
|
#~ 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)
|
|
|
|
require-b2 5.0.1 ;
|
|
import testing ;
|
|
import-search /boost/config/checks ;
|
|
import config : requires ;
|
|
|
|
#
|
|
|
|
run array0.cpp ;
|
|
run array1.cpp ;
|
|
run array2.cpp ;
|
|
run array3.cpp ;
|
|
run array4.cpp ;
|
|
run array5.cpp ;
|
|
run array6.cpp ;
|
|
run array7.cpp ;
|
|
|
|
compile array_constexpr.cpp ;
|
|
|
|
compile-fail array_getfail1.cpp ;
|
|
compile-fail array_getfail2.cpp ;
|
|
|
|
run array_hash.cpp
|
|
: : : [ requires cxx11_noexcept ] ;
|
|
|
|
#
|
|
|
|
run array_typedef_test.cpp ;
|
|
run array_elems_test.cpp ;
|
|
run array_init_test.cpp ;
|
|
run array_copy_test.cpp ;
|
|
run array_convert_test.cpp ;
|
|
run array_data_test.cpp ;
|
|
run array_iterator_test.cpp ;
|
|
run array_reverse_test.cpp ;
|
|
run array_size_test.cpp ;
|
|
run array_access_test.cpp ;
|
|
run array_c_array_test.cpp ;
|
|
run array_fill_test.cpp ;
|
|
run array_assign_test.cpp ;
|
|
run array_swap_test.cpp ;
|
|
run array_swap_test2.cpp ;
|
|
run array_eq_test.cpp ;
|
|
run array_lt_test.cpp ;
|
|
run array_get_test.cpp ;
|
|
|
|
# C++11 constexpr
|
|
|
|
compile array_init_test_cx.cpp ;
|
|
compile array_copy_test_cx.cpp ;
|
|
compile array_data_test_cx.cpp ;
|
|
compile array_iterator_test_cx.cpp ;
|
|
compile array_size_test_cx.cpp ;
|
|
compile array_access_test_cx.cpp ;
|
|
compile array_get_test_cx.cpp ;
|
|
|
|
# C++14 constexpr
|
|
|
|
compile array_eq_test_cx.cpp ;
|
|
compile array_lt_test_cx.cpp ;
|
|
|
|
#
|
|
|
|
run quick.cpp ;
|