Skip to content
Snippets Groups Projects
Commit 46d623a8 authored by Lorenzo Moneta's avatar Lorenzo Moneta
Browse files

Fix for tests crashing in C++11 (from Matthias)

Relax tolerance for some tests on Apple platforms
parent 5639258c
No related branches found
No related tags found
No related merge requests found
...@@ -270,7 +270,7 @@ template<typename V> void testLog2()/*{{{*/ ...@@ -270,7 +270,7 @@ template<typename V> void testLog2()/*{{{*/
#else #else
setFuzzyness<float>(1); setFuzzyness<float>(1);
#endif #endif
#if defined(VC_MSVC) && defined(VC_IMPL_Scalar) #if (defined(VC_MSVC) || defined(__APPLE__) ) && defined(VC_IMPL_Scalar)
setFuzzyness<double>(2); setFuzzyness<double>(2);
#else #else
setFuzzyness<double>(1); setFuzzyness<double>(1);
...@@ -455,11 +455,16 @@ template<typename V> void testAtan()/*{{{*/ ...@@ -455,11 +455,16 @@ template<typename V> void testAtan()/*{{{*/
const V inf = T(INF.value); const V inf = T(INF.value);
VERIFY(Vc::isnan(Vc::atan(nan))); VERIFY(Vc::isnan(Vc::atan(nan)));
#if defined(__APPLE__)
FUZZY_COMPARE(Vc::atan(+inf), +Pi_2);
FUZZY_COMPARE(Vc::atan(-inf), -Pi_2);
#else
COMPARE(Vc::atan(+inf), +Pi_2); COMPARE(Vc::atan(+inf), +Pi_2);
#ifdef VC_MSVC #ifdef VC_MSVC
#pragma warning(suppress: 4756) // overflow in constant arithmetic #pragma warning(suppress: 4756) // overflow in constant arithmetic
#endif #endif
COMPARE(Vc::atan(-inf), -Pi_2); COMPARE(Vc::atan(-inf), -Pi_2);
#endif
} }
Array<Reference<T> > reference = referenceData<T, Atan>(); Array<Reference<T> > reference = referenceData<T, Atan>();
...@@ -487,8 +492,14 @@ template<typename V> void testAtan2()/*{{{*/ ...@@ -487,8 +492,14 @@ template<typename V> void testAtan2()/*{{{*/
const V inf = T(INF.value); const V inf = T(INF.value);
// If y is +0 (-0) and x is less than 0, +pi (-pi) is returned. // If y is +0 (-0) and x is less than 0, +pi (-pi) is returned.
#if defined(__APPLE__)
// these fails on apple arch for float types
FUZZY_COMPARE(Vc::atan2(V(T(+0.)), V(T(-3.))), +Pi);
FUZZY_COMPARE(Vc::atan2(V(T(-0.)), V(T(-3.))), -Pi);
#else
COMPARE(Vc::atan2(V(T(+0.)), V(T(-3.))), +Pi); COMPARE(Vc::atan2(V(T(+0.)), V(T(-3.))), +Pi);
COMPARE(Vc::atan2(V(T(-0.)), V(T(-3.))), -Pi); COMPARE(Vc::atan2(V(T(-0.)), V(T(-3.))), -Pi);
#endif
// If y is +0 (-0) and x is greater than 0, +0 (-0) is returned. // If y is +0 (-0) and x is greater than 0, +0 (-0) is returned.
COMPARE(Vc::atan2(V(T(+0.)), V(T(+3.))), V(T(+0.))); COMPARE(Vc::atan2(V(T(+0.)), V(T(+3.))), V(T(+0.)));
VERIFY(!Vc::atan2(V(T(+0.)), V(T(+3.))).isNegative()); VERIFY(!Vc::atan2(V(T(+0.)), V(T(+3.))).isNegative());
...@@ -505,16 +516,28 @@ template<typename V> void testAtan2()/*{{{*/ ...@@ -505,16 +516,28 @@ template<typename V> void testAtan2()/*{{{*/
VERIFY(Vc::isnan(Vc::atan2(V(T(3.)), nan))); VERIFY(Vc::isnan(Vc::atan2(V(T(3.)), nan)));
VERIFY(Vc::isnan(Vc::atan2(nan, nan))); VERIFY(Vc::isnan(Vc::atan2(nan, nan)));
// If y is +0 (-0) and x is -0, +pi (-pi) is returned. // If y is +0 (-0) and x is -0, +pi (-pi) is returned.
#if defined(__APPLE__)
// these fails on apple arch for float types
FUZZY_COMPARE(Vc::atan2(V(T(+0.)), V(T(-0.))), +Pi);
FUZZY_COMPARE(Vc::atan2(V(T(-0.)), V(T(-0.))), -Pi);
#else
COMPARE(Vc::atan2(V(T(+0.)), V(T(-0.))), +Pi); COMPARE(Vc::atan2(V(T(+0.)), V(T(-0.))), +Pi);
COMPARE(Vc::atan2(V(T(-0.)), V(T(-0.))), -Pi); COMPARE(Vc::atan2(V(T(-0.)), V(T(-0.))), -Pi);
#endif
// If y is +0 (-0) and x is +0, +0 (-0) is returned. // If y is +0 (-0) and x is +0, +0 (-0) is returned.
COMPARE(Vc::atan2(V(T(+0.)), V(T(+0.))), V(T(+0.))); COMPARE(Vc::atan2(V(T(+0.)), V(T(+0.))), V(T(+0.)));
COMPARE(Vc::atan2(V(T(-0.)), V(T(+0.))), V(T(-0.))); COMPARE(Vc::atan2(V(T(-0.)), V(T(+0.))), V(T(-0.)));
VERIFY(!Vc::atan2(V(T(+0.)), V(T(+0.))).isNegative()); VERIFY(!Vc::atan2(V(T(+0.)), V(T(+0.))).isNegative());
VERIFY( Vc::atan2(V(T(-0.)), V(T(+0.))).isNegative()); VERIFY( Vc::atan2(V(T(-0.)), V(T(+0.))).isNegative());
// If y is a finite value greater (less) than 0, and x is negative infinity, +pi (-pi) is returned. // If y is a finite value greater (less) than 0, and x is negative infinity, +pi (-pi) is returned.
#if defined(__APPLE__)
FUZZY_COMPARE(Vc::atan2(V(T(+1.)), -inf), +Pi);
FUZZY_COMPARE(Vc::atan2(V(T(-1.)), -inf), -Pi);
#else
COMPARE(Vc::atan2(V(T(+1.)), -inf), +Pi); COMPARE(Vc::atan2(V(T(+1.)), -inf), +Pi);
COMPARE(Vc::atan2(V(T(-1.)), -inf), -Pi); COMPARE(Vc::atan2(V(T(-1.)), -inf), -Pi);
#endif
// If y is a finite value greater (less) than 0, and x is positive infinity, +0 (-0) is returned. // If y is a finite value greater (less) than 0, and x is positive infinity, +0 (-0) is returned.
COMPARE(Vc::atan2(V(T(+3.)), +inf), V(T(+0.))); COMPARE(Vc::atan2(V(T(+3.)), +inf), V(T(+0.)));
VERIFY(!Vc::atan2(V(T(+3.)), +inf).isNegative()); VERIFY(!Vc::atan2(V(T(+3.)), +inf).isNegative());
......
...@@ -390,7 +390,7 @@ class _UnitTest_Compare ...@@ -390,7 +390,7 @@ class _UnitTest_Compare
return *this; return *this;
} }
Vc_ALWAYS_INLINE ~_UnitTest_Compare() Vc_ALWAYS_INLINE ~_UnitTest_Compare() throw(_UnitTest_Failure)
{ {
if (VC_IS_UNLIKELY(m_failed)) { if (VC_IS_UNLIKELY(m_failed)) {
printLast(); printLast();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment