From 80993b95d3be6dbc11b149b253f72d22f41c586e Mon Sep 17 00:00:00 2001 From: Gael Guennebaud Date: Wed, 3 Sep 2014 22:56:39 +0200 Subject: Disable a test which had never worked without evalautors --- test/sparse_vector.cpp | 3 +++ 1 file changed, 3 insertions(+) (limited to 'test/sparse_vector.cpp') diff --git a/test/sparse_vector.cpp b/test/sparse_vector.cpp index 5eea9edfd..6cd5a9a8c 100644 --- a/test/sparse_vector.cpp +++ b/test/sparse_vector.cpp @@ -71,7 +71,10 @@ template void sparse_vector(int rows, int cols) VERIFY_IS_APPROX(v1.dot(v2), refV1.dot(refV2)); VERIFY_IS_APPROX(v1.dot(refV2), refV1.dot(refV2)); +#ifdef EIGEN_TEST_EVALUATORS + // the following did not compiled without evaluators VERIFY_IS_APPROX(m1*v2, refM1*refV2); +#endif VERIFY_IS_APPROX(v1.dot(m1*v2), refV1.dot(refM1*refV2)); int i = internal::random(0,rows-1); VERIFY_IS_APPROX(v1.dot(m1.col(i)), refV1.dot(refM1.col(i))); -- cgit v1.2.3