From 71cccf0ed825022555b6da57ea64433622058601 Mon Sep 17 00:00:00 2001 From: Gael Guennebaud Date: Wed, 10 Jul 2013 23:26:35 +0200 Subject: [PATCH] Rename map unit test to mapped_matrix: without splitting unit tests, this created a "map" binary file in the include path, not a good idea! --- test/CMakeLists.txt | 2 +- test/{map.cpp => mapped_matrix.cpp} | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) rename test/{map.cpp => mapped_matrix.cpp} (99%) diff --git a/test/CMakeLists.txt b/test/CMakeLists.txt index be9617d85..580e2ef5e 100644 --- a/test/CMakeLists.txt +++ b/test/CMakeLists.txt @@ -153,7 +153,7 @@ ei_add_test(diagonal) ei_add_test(miscmatrices) ei_add_test(commainitializer) ei_add_test(smallvectors) -ei_add_test(map) +ei_add_test(mapped_matrix) ei_add_test(mapstride) ei_add_test(mapstaticmethods) ei_add_test(array) diff --git a/test/map.cpp b/test/mapped_matrix.cpp similarity index 99% rename from test/map.cpp rename to test/mapped_matrix.cpp index 2b52e4f38..de9dbbde3 100644 --- a/test/map.cpp +++ b/test/mapped_matrix.cpp @@ -114,7 +114,7 @@ template void check_const_correctness(const PlainObjec VERIFY( !(Map::Flags & LvalueBit) ); } -void test_map() +void test_mapped_matrix() { for(int i = 0; i < g_repeat; i++) { CALL_SUBTEST_1( map_class_vector(Matrix()) );