aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/smallvectors.cpp
diff options
context:
space:
mode:
authorGravatar Gael Guennebaud <g.gael@free.fr>2008-05-22 12:18:55 +0000
committerGravatar Gael Guennebaud <g.gael@free.fr>2008-05-22 12:18:55 +0000
commit522e24f2d728aa248fbcaf38ed3ce6e629351409 (patch)
tree46e45228336071049bf2982e8e203d16687d57f5 /test/smallvectors.cpp
parentc6789a279c4def1ba33f6481ac7f9df68ba5f32b (diff)
update of the testing framework:
replaced the QTestLib framework my custom macros and a (optional) custom script to run the tests from ctest.
Diffstat (limited to 'test/smallvectors.cpp')
-rw-r--r--test/smallvectors.cpp20
1 files changed, 8 insertions, 12 deletions
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 <http://www.gnu.org/licenses/>.
#include "main.h"
-namespace Eigen {
-
template<typename Scalar> void smallVectors()
{
typedef Matrix<Scalar, 1, 2> V2;
@@ -49,13 +47,11 @@ template<typename Scalar> void smallVectors()
VERIFY_IS_APPROX(x4, v4.w());
}
-void EigenTest::testSmallVectors()
+void test_smallvectors()
{
- for(int i = 0; i < m_repeat; i++) {
- smallVectors<int>();
- smallVectors<float>();
- smallVectors<double>();
+ for(int i = 0; i < g_repeat; i++) {
+ CALL_SUBTEST( smallVectors<int>() );
+ CALL_SUBTEST( smallVectors<float>() );
+ CALL_SUBTEST( smallVectors<double>() );
}
}
-
-} // namespace Eigen