2
0
mirror of https://github.com/boostorg/math.git synced 2026-01-19 04:22:09 +00:00

CI: clang-6 on travis has no C++17 std lib support so don't expect it to work.

This commit is contained in:
jzmaddock
2019-01-16 18:46:19 +00:00
parent a3ebb83e59
commit d713d9bf75
3 changed files with 6 additions and 6 deletions

View File

@@ -502,7 +502,7 @@ matrix:
- os: linux
compiler: clang++-6.0
env: TOOLSET=clang COMPILER=clang++-6.0 CXXSTD=c++17 TEST_SUITE=special_fun
env: TOOLSET=clang COMPILER=clang++-6.0 CXXSTD=c++14 TEST_SUITE=special_fun
addons:
apt:
packages:
@@ -513,7 +513,7 @@ matrix:
- os: linux
compiler: clang++-6.0
env: TOOLSET=clang COMPILER=clang++-6.0 CXXSTD=c++17 TEST_SUITE=distribution_tests
env: TOOLSET=clang COMPILER=clang++-6.0 CXXSTD=c++14 TEST_SUITE=distribution_tests
addons:
apt:
packages:
@@ -524,7 +524,7 @@ matrix:
- os: linux
compiler: clang++-6.0
env: TOOLSET=clang COMPILER=clang++-6.0 CXXSTD=c++17 TEST_SUITE=misc
env: TOOLSET=clang COMPILER=clang++-6.0 CXXSTD=c++14 TEST_SUITE=misc
addons:
apt:
packages:
@@ -535,7 +535,7 @@ matrix:
- os: linux
compiler: clang++-6.0
env: TOOLSET=clang COMPILER=clang++-6.0 CXXSTD=c++17 TEST_SUITE=../example//examples
env: TOOLSET=clang COMPILER=clang++-6.0 CXXSTD=c++14 TEST_SUITE=../example//examples
addons:
apt:
packages:

View File

@@ -144,5 +144,5 @@ test-suite examples :
[ run barycentric_interpolation_example_2.cpp : : : [ requires cxx11_smart_ptr cxx11_function_template_default_args ] ]
[ run cubic_b_spline_example.cpp : : : [ requires cxx11_smart_ptr cxx11_hdr_random cxx11_defaulted_functions ] ]
[ compile naive_monte_carlo_example.cpp : [ requires cxx11_auto_declarations cxx11_lambdas cxx11_unified_initialization_syntax cxx11_hdr_thread cxx11_hdr_atomic cxx11_decltype cxx11_hdr_future cxx11_hdr_chrono cxx11_hdr_random cxx11_allocator ] ] # requires user input, can't run it, take a long time too!
[ run catmull_rom_example.cpp : : : [ requires cxx17_if_constexpr cxx11_auto_declarations ] ] # Actually the C++17 features used is std::size, not if constexpr; looks like there isn't yet a test for it.
[ run catmull_rom_example.cpp : : : [ requires cxx17_if_constexpr cxx11_auto_declarations cxx17_std_apply ] ] # Actually the C++17 features used is std::size, not if constexpr; looks like there isn't yet a test for it.
;

View File

@@ -901,7 +901,7 @@ test-suite misc :
[ run test_barycentric_rational.cpp ../../test/build//boost_unit_test_framework : : : [ requires cxx11_smart_ptr ] [ check-target-builds ../config//has_float128 "GCC libquadmath and __float128 support" : <linkflags>-lquadmath ] ]
[ run test_constant_generate.cpp : : : release <define>USE_CPP_FLOAT=1 <exception-handling>off:<build>no ]
[ run test_cubic_b_spline.cpp ../../test/build//boost_unit_test_framework : : : [ requires cxx11_smart_ptr cxx11_defaulted_functions ] <debug-symbols>off <toolset>msvc:<cxxflags>/bigobj release ]
[ run catmull_rom_test.cpp ../../test/build//boost_unit_test_framework : : : [ requires cxx17_if_constexpr ] ] # does not in fact require C++17 constexpr; requires C++17 std::size.
[ run catmull_rom_test.cpp ../../test/build//boost_unit_test_framework : : : [ requires cxx17_if_constexpr cxx17_std_apply ] ] # does not in fact require C++17 constexpr; requires C++17 std::size.
[ run test_real_concept.cpp ../../test/build//boost_unit_test_framework ]
[ run test_remez.cpp pch ../../test/build//boost_unit_test_framework ]
[ run test_roots.cpp pch ../../test/build//boost_unit_test_framework ]