From b81351cb07f86bba6956b8a123266050b4df114b Mon Sep 17 00:00:00 2001 From: Benoit Jacob Date: Mon, 8 Mar 2010 21:30:06 -0500 Subject: nomalloc: minor cleanup --- test/nomalloc.cpp | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'test/nomalloc.cpp') diff --git a/test/nomalloc.cpp b/test/nomalloc.cpp index 9862166eb..a80145f1b 100644 --- a/test/nomalloc.cpp +++ b/test/nomalloc.cpp @@ -85,17 +85,17 @@ void ctms_decompositions() typedef Eigen::Matrix Matrix; typedef Eigen::Matrix Vector; typedef Eigen::Matrix, Eigen::Dynamic, Eigen::Dynamic, - Eigen::ColMajor | Eigen::AutoAlign, + 0, maxSize, maxSize> ComplexMatrix; const Matrix A(Matrix::Random(size, size)); @@ -134,11 +134,11 @@ void test_nomalloc() { // check that our operator new is indeed called: VERIFY_RAISES_ASSERT(MatrixXd dummy = MatrixXd::Random(3,3)); - CALL_SUBTEST(nomalloc(Matrix()) ); - CALL_SUBTEST(nomalloc(Matrix4d()) ); - CALL_SUBTEST(nomalloc(Matrix()) ); + CALL_SUBTEST_1(nomalloc(Matrix()) ); + CALL_SUBTEST_2(nomalloc(Matrix4d()) ); + CALL_SUBTEST_3(nomalloc(Matrix()) ); // Check decomposition modules with dynamic matrices that have a known compile-time max size (ctms) - CALL_SUBTEST(ctms_decompositions()); + CALL_SUBTEST_4(ctms_decompositions()); } -- cgit v1.2.3