From 131ee4bb8ea1d4a6c5f876efc93a84d82320e7ba Mon Sep 17 00:00:00 2001 From: Gael Guennebaud Date: Mon, 11 Jul 2016 11:46:55 +0200 Subject: [PATCH] Split test_slice_in_expr which seems to be huge for visual --- unsupported/test/cxx11_tensor_morphing.cpp | 34 +++++++++++----------- 1 file changed, 17 insertions(+), 17 deletions(-) diff --git a/unsupported/test/cxx11_tensor_morphing.cpp b/unsupported/test/cxx11_tensor_morphing.cpp index 233d694931..f7de43110f 100644 --- a/unsupported/test/cxx11_tensor_morphing.cpp +++ b/unsupported/test/cxx11_tensor_morphing.cpp @@ -13,7 +13,7 @@ using Eigen::Tensor; -template +template static void test_simple_reshape() { Tensor tensor1(2,3,1,7,1); @@ -41,7 +41,7 @@ static void test_simple_reshape() } } -template +template static void test_reshape_in_expr() { MatrixXf m1(2,3*5*7*11); MatrixXf m2(3*5*7*11,13); @@ -66,7 +66,7 @@ static void test_reshape_in_expr() { } } -template +template static void test_reshape_as_lvalue() { Tensor tensor(2,3,7); @@ -461,25 +461,25 @@ static void test_composition() void test_cxx11_tensor_morphing() { - CALL_SUBTEST_1(test_simple_reshape()); - CALL_SUBTEST_1(test_reshape_in_expr()); - CALL_SUBTEST_1(test_reshape_as_lvalue()); + CALL_SUBTEST_1(test_simple_reshape()); + CALL_SUBTEST_1(test_reshape_in_expr()); + CALL_SUBTEST_1(test_reshape_as_lvalue()); CALL_SUBTEST_1(test_simple_slice()); CALL_SUBTEST_1(test_simple_slice()); CALL_SUBTEST_1(test_const_slice()); CALL_SUBTEST_2(test_slice_in_expr()); - CALL_SUBTEST_2(test_slice_in_expr()); - CALL_SUBTEST_3(test_slice_as_lvalue()); - CALL_SUBTEST_3(test_slice_as_lvalue()); - CALL_SUBTEST_4(test_slice_raw_data()); - CALL_SUBTEST_4(test_slice_raw_data()); + CALL_SUBTEST_3(test_slice_in_expr()); + CALL_SUBTEST_4(test_slice_as_lvalue()); + CALL_SUBTEST_4(test_slice_as_lvalue()); + CALL_SUBTEST_5(test_slice_raw_data()); + CALL_SUBTEST_5(test_slice_raw_data()); - CALL_SUBTEST_5(test_strided_slice_write()); - CALL_SUBTEST_5(test_strided_slice()); - CALL_SUBTEST_5(test_strided_slice_write()); - CALL_SUBTEST_5(test_strided_slice()); + CALL_SUBTEST_6(test_strided_slice_write()); + CALL_SUBTEST_6(test_strided_slice()); + CALL_SUBTEST_6(test_strided_slice_write()); + CALL_SUBTEST_6(test_strided_slice()); - CALL_SUBTEST_6(test_composition()); - CALL_SUBTEST_6(test_composition()); + CALL_SUBTEST_7(test_composition()); + CALL_SUBTEST_7(test_composition()); }