aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/pardiso_support.cpp
diff options
context:
space:
mode:
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> >());
}