From d6b7c1398489afe7999aaf0514d669b7de289d22 Mon Sep 17 00:00:00 2001 From: jzmaddock Date: Sat, 20 Jul 2024 17:40:02 +0100 Subject: [PATCH] Fix C++23 stdfloat test names. --- test/test_landau.cpp | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/test/test_landau.cpp b/test/test_landau.cpp index 72e0ada09..08d18ec8e 100644 --- a/test/test_landau.cpp +++ b/test/test_landau.cpp @@ -732,7 +732,7 @@ BOOST_AUTO_TEST_CASE(landau_pdf_fp64) } #ifdef __STDCPP_FLOAT64_T__ -BOOST_AUTO_TEST_CASE(landau_pdf_fp64) +BOOST_AUTO_TEST_CASE(landau_pdf_fp64_std) { do_test_landau_pdf(); } @@ -749,7 +749,7 @@ BOOST_AUTO_TEST_CASE(landau_cdf_fp64) } #ifdef __STDCPP_FLOAT64_T__ -BOOST_AUTO_TEST_CASE(landau_cdf_fp64) +BOOST_AUTO_TEST_CASE(landau_cdf_fp64_std) { do_test_landau_cdf(); } @@ -766,7 +766,7 @@ BOOST_AUTO_TEST_CASE(landau_ccdf_fp64) } #ifdef __STDCPP_FLOAT64_T__ -BOOST_AUTO_TEST_CASE(landau_ccdf_fp64) +BOOST_AUTO_TEST_CASE(landau_ccdf_fp64_std) { do_test_landau_ccdf(); } @@ -783,7 +783,7 @@ BOOST_AUTO_TEST_CASE(landau_quantile_nearzero_fp64) } #ifdef __STDCPP_FLOAT64_T__ -BOOST_AUTO_TEST_CASE(landau_quantile_nearzero_fp64) +BOOST_AUTO_TEST_CASE(landau_quantile_nearzero_fp64_std) { do_test_landau_quantile_nearzero(); } @@ -800,7 +800,7 @@ BOOST_AUTO_TEST_CASE(landau_quantile_lower_fp64) } #ifdef __STDCPP_FLOAT64_T__ -BOOST_AUTO_TEST_CASE(landau_quantile_lower_fp64) +BOOST_AUTO_TEST_CASE(landau_quantile_lower_fp64_std) { do_test_landau_quantile_lower(); } @@ -817,7 +817,7 @@ BOOST_AUTO_TEST_CASE(landau_quantile_upper_fp64) } #ifdef __STDCPP_FLOAT64_T__ -BOOST_AUTO_TEST_CASE(landau_quantile_upper_fp64) +BOOST_AUTO_TEST_CASE(landau_quantile_upper_fp64_std) { do_test_landau_quantile_upper(); } @@ -834,7 +834,7 @@ BOOST_AUTO_TEST_CASE(landau_locscale_fp64) } #ifdef __STDCPP_FLOAT64_T__ -BOOST_AUTO_TEST_CASE(landau_locscale_fp64) +BOOST_AUTO_TEST_CASE(landau_locscale_fp64_std) { do_test_landau_locscale_param(); }