at 24.05-pre 34 lines 943 B view raw
1commit 87433035c70578507e08565723c99158290f2488 2Author: Doron Behar <doron.behar@gmail.com> 3Date: Tue Aug 1 13:26:04 2023 +0300 4 5 Darwin & Musl: Disable failing exp10 test 6 7diff --git a/test/test_xsimd_api.cpp b/test/test_xsimd_api.cpp 8index 84b4b0b..1b29742 100644 9--- a/test/test_xsimd_api.cpp 10+++ b/test/test_xsimd_api.cpp 11@@ -515,11 +515,6 @@ struct xsimd_api_float_types_functions 12 value_type val(2); 13 CHECK_EQ(extract(xsimd::exp(T(val))), std::exp(val)); 14 } 15- void test_exp10() 16- { 17- value_type val(2); 18- CHECK_EQ(extract(xsimd::exp10(T(val))), std::pow(value_type(10), val)); 19- } 20 void test_exp2() 21 { 22 value_type val(2); 23@@ -804,11 +799,6 @@ TEST_CASE_TEMPLATE("[xsimd api | float types functions]", B, FLOAT_TYPES) 24 Test.test_exp(); 25 } 26 27- SUBCASE("exp10") 28- { 29- Test.test_exp10(); 30- } 31- 32 SUBCASE("exp2") 33 { 34 Test.test_exp2();