diff --git a/test/block.cpp b/test/block.cpp index baf5e20d3..d9c5c12db 100644 --- a/test/block.cpp +++ b/test/block.cpp @@ -403,8 +403,8 @@ void unwind_test(const BaseXpr&) { EIGEN_DECLARE_TEST(block) { for (int i = 0; i < g_repeat; i++) { CALL_SUBTEST_1(block(Matrix())); - CALL_SUBTEST_1(block(Matrix(internal::random(2, 50)))); - CALL_SUBTEST_1(block(Matrix(internal::random(2, 50)))); + CALL_SUBTEST_10(block(Matrix(internal::random(2, 50)))); + CALL_SUBTEST_11(block(Matrix(internal::random(2, 50)))); CALL_SUBTEST_2(block(Matrix4d())); CALL_SUBTEST_3(block(MatrixXcf(internal::random(2, 50), internal::random(2, 50)))); CALL_SUBTEST_4(block(MatrixXi(internal::random(2, 50), internal::random(2, 50)))); diff --git a/test/nomalloc.cpp b/test/nomalloc.cpp index 7b86c336d..01fe6fde2 100644 --- a/test/nomalloc.cpp +++ b/test/nomalloc.cpp @@ -241,8 +241,8 @@ EIGEN_DECLARE_TEST(nomalloc) { // Check decomposition modules with dynamic matrices that have a known compile-time max size (ctms) CALL_SUBTEST_4(ctms_decompositions()); - CALL_SUBTEST_4(selfadjoint_eigensolver_large_fixed_no_malloc()); - CALL_SUBTEST_4(selfadjoint_eigensolver_large_fixed_no_malloc()); + CALL_SUBTEST_9(selfadjoint_eigensolver_large_fixed_no_malloc()); + CALL_SUBTEST_10(selfadjoint_eigensolver_large_fixed_no_malloc()); CALL_SUBTEST_5(test_zerosized());