From 82f0ce27261df3b21037d93d4595655b3df754a6 Mon Sep 17 00:00:00 2001 From: Gael Guennebaud Date: Tue, 17 Jul 2018 14:46:15 +0200 Subject: Get rid of EIGEN_TEST_FUNC, unit tests must now be declared with EIGEN_DECLARE_TEST(mytest) { /* code */ }. This provide several advantages: - more flexibility in designing unit tests - unit tests can be glued to speed up compilation - unit tests are compiled with same predefined macros, which is a requirement for zapcc --- test/gpu_basic.cu | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'test/gpu_basic.cu') diff --git a/test/gpu_basic.cu b/test/gpu_basic.cu index 285b87910..e8069f185 100644 --- a/test/gpu_basic.cu +++ b/test/gpu_basic.cu @@ -15,7 +15,6 @@ #define EIGEN_TEST_NO_LONGDOUBLE #define EIGEN_TEST_NO_COMPLEX -#define EIGEN_TEST_FUNC gpu_basic #define EIGEN_DEFAULT_DENSE_INDEX_TYPE int #include "main.h" @@ -162,7 +161,7 @@ struct matrix_inverse { } }; -void test_gpu_basic() +EIGEN_DECLARE_TEST(gpu_basic) { ei_test_init_gpu(); -- cgit v1.2.3