From 96464f8563720f09648876d7f268db6059615a19 Mon Sep 17 00:00:00 2001 From: Gael Guennebaud Date: Fri, 20 May 2011 09:59:15 +0200 Subject: clean several other assertion checking tests --- test/geo_transformations.cpp | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'test/geo_transformations.cpp') diff --git a/test/geo_transformations.cpp b/test/geo_transformations.cpp index 67396498d..b9e9f8c8e 100644 --- a/test/geo_transformations.cpp +++ b/test/geo_transformations.cpp @@ -442,8 +442,9 @@ template void transform_alignment() VERIFY_IS_APPROX( (*p1) * (*p1), (*p2)*(*p3)); - #ifdef EIGEN_VECTORIZE - VERIFY_RAISES_ASSERT((::new(reinterpret_cast(array3u)) Projective3a)); + #if defined(EIGEN_VECTORIZE) && !defined(EIGEN_DONT_ALIGN_STATICALLY) + if(internal::packet_traits::Vectorizable) + VERIFY_RAISES_ASSERT((::new(reinterpret_cast(array3u)) Projective3a)); #endif } @@ -455,7 +456,8 @@ void test_geo_transformations() CALL_SUBTEST_2(( transformations() )); CALL_SUBTEST_2(( non_projective_only() )); - + CALL_SUBTEST_2(( transform_alignment() )); + CALL_SUBTEST_3(( transformations() )); CALL_SUBTEST_3(( transformations() )); CALL_SUBTEST_3(( transform_alignment() )); -- cgit v1.2.3