aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/geo_quaternion.cpp
diff options
context:
space:
mode:
authorGravatar Gael Guennebaud <g.gael@free.fr>2010-08-18 09:35:55 +0200
committerGravatar Gael Guennebaud <g.gael@free.fr>2010-08-18 09:35:55 +0200
commitddbbd7065d4e7dc221ecdc45f36db8745e433bec (patch)
tree42a141f5744bf3efac88602706ea5532a6006db8 /test/geo_quaternion.cpp
parent85fdcdf0554918a485112ed078417379f691d01b (diff)
* disable unalignment detection when vectorization is not enabled
* revert MapBase unalignment detection
Diffstat (limited to 'test/geo_quaternion.cpp')
-rw-r--r--test/geo_quaternion.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/test/geo_quaternion.cpp b/test/geo_quaternion.cpp
index 953ea158a..bfe15320a 100644
--- a/test/geo_quaternion.cpp
+++ b/test/geo_quaternion.cpp
@@ -134,7 +134,9 @@ template<typename Scalar> void mapQuaternion(void){
VERIFY_IS_APPROX(q1.coeffs(), q2.coeffs());
VERIFY_IS_APPROX(q1.coeffs(), q3.coeffs());
+ #ifdef EIGEN_VECTORIZE
VERIFY_RAISES_ASSERT((MQuaternionA(array3unaligned)));
+ #endif
}
void test_geo_quaternion()