commit 9374b88b97911d9c6e19d5e764e25183cd45d534 Author: Doron Behar Date: Tue Aug 1 13:29:16 2023 +0300 aarch64-Darwin: Disable failing polar test diff --git a/test/test_xsimd_api.cpp b/test/test_xsimd_api.cpp index 1b29742..03c6b4b 100644 --- a/test/test_xsimd_api.cpp +++ b/test/test_xsimd_api.cpp @@ -652,12 +652,6 @@ struct xsimd_api_float_types_functions value_type val1(4); CHECK_EQ(extract(xsimd::nextafter(T(val0), T(val1))), std::nextafter(val0, val1)); } - void test_polar() - { - value_type val0(3); - value_type val1(4); - CHECK_EQ(extract(xsimd::polar(T(val0), T(val1))), std::polar(val0, val1)); - } void test_pow() { value_type val0(2); @@ -912,11 +906,6 @@ TEST_CASE_TEMPLATE("[xsimd api | float types functions]", B, FLOAT_TYPES) Test.test_nextafter(); } - SUBCASE("polar") - { - Test.test_polar(); - } - SUBCASE("pow") { Test.test_pow();