From 522e24f2d728aa248fbcaf38ed3ce6e629351409 Mon Sep 17 00:00:00 2001 From: Gael Guennebaud Date: Thu, 22 May 2008 12:18:55 +0000 Subject: update of the testing framework: replaced the QTestLib framework my custom macros and a (optional) custom script to run the tests from ctest. --- test/smallvectors.cpp | 20 ++++++++------------ 1 file changed, 8 insertions(+), 12 deletions(-) (limited to 'test/smallvectors.cpp') diff --git a/test/smallvectors.cpp b/test/smallvectors.cpp index b8c7d47f6..6a41ff447 100644 --- a/test/smallvectors.cpp +++ b/test/smallvectors.cpp @@ -5,12 +5,12 @@ // // Eigen is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public -// License as published by the Free Software Foundation; either +// License as published by the Free Software Foundation; either // version 3 of the License, or (at your option) any later version. // // Alternatively, you can redistribute it and/or // modify it under the terms of the GNU General Public License as -// published by the Free Software Foundation; either version 2 of +// published by the Free Software Foundation; either version 2 of // the License, or (at your option) any later version. // // Eigen is distributed in the hope that it will be useful, but WITHOUT ANY @@ -18,14 +18,12 @@ // FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License or the // GNU General Public License for more details. // -// You should have received a copy of the GNU Lesser General Public +// You should have received a copy of the GNU Lesser General Public // License and a copy of the GNU General Public License along with // Eigen. If not, see . #include "main.h" -namespace Eigen { - template void smallVectors() { typedef Matrix V2; @@ -49,13 +47,11 @@ template void smallVectors() VERIFY_IS_APPROX(x4, v4.w()); } -void EigenTest::testSmallVectors() +void test_smallvectors() { - for(int i = 0; i < m_repeat; i++) { - smallVectors(); - smallVectors(); - smallVectors(); + for(int i = 0; i < g_repeat; i++) { + CALL_SUBTEST( smallVectors() ); + CALL_SUBTEST( smallVectors() ); + CALL_SUBTEST( smallVectors() ); } } - -} // namespace Eigen -- cgit v1.2.3