From 87cf972f247c8a411091ac99111fafb5bd43c91c Mon Sep 17 00:00:00 2001 From: Rasmus Munk Larsen <4643818-rmlarsen1@users.noreply.gitlab.com> Date: Tue, 11 Aug 2026 10:22:10 -0700 Subject: [PATCH] Test: Rebalance the oversized subtests in nomalloc and block libeigen/eigen!2773 Co-authored-by: Rasmus Munk Larsen --- test/block.cpp | 4 ++-- test/nomalloc.cpp | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) 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());