aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/eigen2/eigen2_qtvector.cpp
diff options
context:
space:
mode:
authorGravatar Benoit Jacob <jacob.benoit.1@gmail.com>2011-01-25 09:02:59 -0500
committerGravatar Benoit Jacob <jacob.benoit.1@gmail.com>2011-01-25 09:02:59 -0500
commit3e2469f9519fdc4f185e42dda3aeb4fda0a5547b (patch)
tree8a9be121124e51f5f805babc8e3eea559e71ff33 /test/eigen2/eigen2_qtvector.cpp
parentb04591fbb487d56f190a33ad96e7633b50da0c05 (diff)
eigen2: split tests
Diffstat (limited to 'test/eigen2/eigen2_qtvector.cpp')
-rw-r--r--test/eigen2/eigen2_qtvector.cpp34
1 files changed, 17 insertions, 17 deletions
diff --git a/test/eigen2/eigen2_qtvector.cpp b/test/eigen2/eigen2_qtvector.cpp
index 8bd000083..8c4446637 100644
--- a/test/eigen2/eigen2_qtvector.cpp
+++ b/test/eigen2/eigen2_qtvector.cpp
@@ -145,29 +145,29 @@ void check_qtvector_quaternion(const QuaternionType&)
void test_eigen2_qtvector()
{
// some non vectorizable fixed sizes
- CALL_SUBTEST(check_qtvector_matrix(Vector2f()));
- CALL_SUBTEST(check_qtvector_matrix(Matrix3f()));
- CALL_SUBTEST(check_qtvector_matrix(Matrix3d()));
+ CALL_SUBTEST_1(check_qtvector_matrix(Vector2f()));
+ CALL_SUBTEST_1(check_qtvector_matrix(Matrix3f()));
+ CALL_SUBTEST_1(check_qtvector_matrix(Matrix3d()));
// some vectorizable fixed sizes
- CALL_SUBTEST(check_qtvector_matrix(Matrix2f()));
- CALL_SUBTEST(check_qtvector_matrix(Vector4f()));
- CALL_SUBTEST(check_qtvector_matrix(Matrix4f()));
- CALL_SUBTEST(check_qtvector_matrix(Matrix4d()));
+ CALL_SUBTEST_2(check_qtvector_matrix(Matrix2f()));
+ CALL_SUBTEST_2(check_qtvector_matrix(Vector4f()));
+ CALL_SUBTEST_2(check_qtvector_matrix(Matrix4f()));
+ CALL_SUBTEST_2(check_qtvector_matrix(Matrix4d()));
// some dynamic sizes
- CALL_SUBTEST(check_qtvector_matrix(MatrixXd(1,1)));
- CALL_SUBTEST(check_qtvector_matrix(VectorXd(20)));
- CALL_SUBTEST(check_qtvector_matrix(RowVectorXf(20)));
- CALL_SUBTEST(check_qtvector_matrix(MatrixXcf(10,10)));
+ CALL_SUBTEST_3(check_qtvector_matrix(MatrixXd(1,1)));
+ CALL_SUBTEST_3(check_qtvector_matrix(VectorXd(20)));
+ CALL_SUBTEST_3(check_qtvector_matrix(RowVectorXf(20)));
+ CALL_SUBTEST_3(check_qtvector_matrix(MatrixXcf(10,10)));
// some Transform
- CALL_SUBTEST(check_qtvector_transform(Transform2f()));
- CALL_SUBTEST(check_qtvector_transform(Transform3f()));
- CALL_SUBTEST(check_qtvector_transform(Transform3d()));
- //CALL_SUBTEST(check_qtvector_transform(Transform4d()));
+ CALL_SUBTEST_4(check_qtvector_transform(Transform2f()));
+ CALL_SUBTEST_4(check_qtvector_transform(Transform3f()));
+ CALL_SUBTEST_4(check_qtvector_transform(Transform3d()));
+ //CALL_SUBTEST_4(check_qtvector_transform(Transform4d()));
// some Quaternion
- CALL_SUBTEST(check_qtvector_quaternion(Quaternionf()));
- CALL_SUBTEST(check_qtvector_quaternion(Quaternionf()));
+ CALL_SUBTEST_5(check_qtvector_quaternion(Quaternionf()));
+ CALL_SUBTEST_5(check_qtvector_quaternion(Quaternionf()));
}