aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/pardiso_support.cpp
diff options
context:
space:
mode:
authorGravatar Desire NUENTSA <desire.nuentsa_wakam@inria.fr>2012-03-29 14:32:54 +0200
committerGravatar Desire NUENTSA <desire.nuentsa_wakam@inria.fr>2012-03-29 14:32:54 +0200
commitf804a319c81cb1629abb9bdc97dd74a2d2dec3d7 (patch)
tree5d59101e9f756ed2cc02ae6047dcaaf8a67dbfe4 /test/pardiso_support.cpp
parentada9e791450618d1d608db11fcdd97adde824cbe (diff)
modify the unit tests of sparse linear solvers to enable tests on real matrices, from MatrixMarket for instance
Diffstat (limited to 'test/pardiso_support.cpp')
-rw-r--r--test/pardiso_support.cpp10
1 files changed, 4 insertions, 6 deletions
diff --git a/test/pardiso_support.cpp b/test/pardiso_support.cpp
index 11cb98e10..67efad6d8 100644
--- a/test/pardiso_support.cpp
+++ b/test/pardiso_support.cpp
@@ -22,10 +22,8 @@ template<typename T> void test_pardiso_T()
void test_pardiso_support()
{
- for(int i = 0; i < g_repeat; i++) {
- CALL_SUBTEST_1(test_pardiso_T<float>());
- CALL_SUBTEST_2(test_pardiso_T<double>());
- CALL_SUBTEST_3(test_pardiso_T< std::complex<float> >());
- CALL_SUBTEST_4(test_pardiso_T< std::complex<double> >());
- }
+ CALL_SUBTEST_1(test_pardiso_T<float>());
+ CALL_SUBTEST_2(test_pardiso_T<double>());
+ CALL_SUBTEST_3(test_pardiso_T< std::complex<float> >());
+ CALL_SUBTEST_4(test_pardiso_T< std::complex<double> >());
}