Disable a failure test if extended double precision is in use (x87)

This commit is contained in:
Gael Guennebaud 2016-09-21 20:09:07 +02:00
parent 9fa2c8650e
commit 1fc3a21ed0

View File

@ -417,6 +417,7 @@ void cholesky_faillure_cases()
VERIFY_IS_NOT_APPROX(mat,ldlt.reconstructedMatrix());
VERIFY(ldlt.info()==NumericalIssue);
}
#if (!EIGEN_ARCH_i386) || EIGEN_VECTORIZE_SSE2
{
mat.resize(3,3);
mat << -1, -3, 3,
@ -426,6 +427,7 @@ void cholesky_faillure_cases()
VERIFY(ldlt.info()==NumericalIssue);
VERIFY_IS_NOT_APPROX(mat,ldlt.reconstructedMatrix());
}
#endif
{
mat.resize(3,3);
mat << 1, 2, 3,