From c0af3630d1499575d94653df0d0b7141b2534e81 Mon Sep 17 00:00:00 2001 From: jzmaddock Date: Mon, 21 Apr 2025 09:59:07 +0100 Subject: [PATCH] Add true multiprecision test case to log1p/expm1. --- test/log1p_expm1_extra_test.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/test/log1p_expm1_extra_test.cpp b/test/log1p_expm1_extra_test.cpp index eb0ff079d..cdf1be2d7 100644 --- a/test/log1p_expm1_extra_test.cpp +++ b/test/log1p_expm1_extra_test.cpp @@ -69,5 +69,6 @@ BOOST_AUTO_TEST_CASE( test_main ) test(boost::multiprecision::cpp_bin_float_double(0), "cpp_bin_float_double"); test(boost::multiprecision::cpp_bin_float_double_extended(0), "cpp_bin_float_double_extended"); test(boost::multiprecision::cpp_bin_float_quad(0), "cpp_bin_float_quad"); + test(boost::multiprecision::cpp_bin_float_100(0), "cpp_bin_float_100"); }