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

One more try to get drone sanitizer config correct.

This commit is contained in:
jzmaddock
2021-04-02 19:10:06 +01:00
parent 852aeff1e9
commit 9d2c573cae
2 changed files with 3 additions and 3 deletions

View File

@@ -16,7 +16,7 @@ windowsglobalimage="cppalliance/dronevs2019"
def main(ctx):
things_to_test = [ "special_fun", "distribution_tests", "mp", "misc", "interpolators", "quadrature", "autodiff", "long-running-tests", "float128_tests" ]
sanitizer_test = [ "special_fun", "distribution_tests", "mp", "misc", "interpolators", "quadrature", "autodiff", "float128_tests" ]
sanitizer_test = [ "special_fun", "distribution_tests", "misc", "interpolators", "quadrature", "autodiff", "float128_tests" ]
gnu_6_stds = [ "gnu++11", "gnu++14" ]
gnu_8_stds = [ "gnu++11", "gnu++14", "gnu++17" ]
gnu_10_stds = [ "gnu++11", "gnu++14", "gnu++17", "gnu++20" ]

View File

@@ -3,8 +3,8 @@
// Boost Software License, Version 1.0. (See accompanying file
// LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
#if defined(BOOST_CI_SANITIZER_BUILD)
# error "Sanitizer is in effect".
#if !defined(BOOST_CI_SANITIZER_BUILD)
# error "Sanitizer is NOT in effect".
#endif
int main()