aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/map.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'test/map.cpp')
-rw-r--r--test/map.cpp20
1 files changed, 10 insertions, 10 deletions
diff --git a/test/map.cpp b/test/map.cpp
index 62e727304..5c0ec3137 100644
--- a/test/map.cpp
+++ b/test/map.cpp
@@ -80,16 +80,16 @@ template<typename VectorType> void map_static_methods(const VectorType& m)
void test_map()
{
for(int i = 0; i < g_repeat; i++) {
- CALL_SUBTEST( map_class(Matrix<float, 1, 1>()) );
- CALL_SUBTEST( map_class(Vector4d()) );
- CALL_SUBTEST( map_class(RowVector4f()) );
- CALL_SUBTEST( map_class(VectorXcf(8)) );
- CALL_SUBTEST( map_class(VectorXi(12)) );
+ CALL_SUBTEST_1( map_class(Matrix<float, 1, 1>()) );
+ CALL_SUBTEST_2( map_class(Vector4d()) );
+ CALL_SUBTEST_3( map_class(RowVector4f()) );
+ CALL_SUBTEST_4( map_class(VectorXcf(8)) );
+ CALL_SUBTEST_5( map_class(VectorXi(12)) );
- CALL_SUBTEST( map_static_methods(Matrix<double, 1, 1>()) );
- CALL_SUBTEST( map_static_methods(Vector3f()) );
- CALL_SUBTEST( map_static_methods(RowVector3d()) );
- CALL_SUBTEST( map_static_methods(VectorXcd(8)) );
- CALL_SUBTEST( map_static_methods(VectorXf(12)) );
+ CALL_SUBTEST_6( map_static_methods(Matrix<double, 1, 1>()) );
+ CALL_SUBTEST_7( map_static_methods(Vector3f()) );
+ CALL_SUBTEST_8( map_static_methods(RowVector3d()) );
+ CALL_SUBTEST_9( map_static_methods(VectorXcd(8)) );
+ CALL_SUBTEST_10( map_static_methods(VectorXf(12)) );
}
}