aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/sparse_product.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'test/sparse_product.cpp')
-rw-r--r--test/sparse_product.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/test/sparse_product.cpp b/test/sparse_product.cpp
index 743273f65..f2a4e8bb9 100644
--- a/test/sparse_product.cpp
+++ b/test/sparse_product.cpp
@@ -123,10 +123,10 @@ template<typename SparseMatrixType> void sparse_product(const SparseMatrixType&
void test_sparse_product()
{
for(int i = 0; i < g_repeat; i++) {
- CALL_SUBTEST( sparse_product(SparseMatrix<double>(8, 8)) );
- CALL_SUBTEST( sparse_product(SparseMatrix<std::complex<double> >(16, 16)) );
- CALL_SUBTEST( sparse_product(SparseMatrix<double>(33, 33)) );
+ CALL_SUBTEST_1( sparse_product(SparseMatrix<double>(8, 8)) );
+ CALL_SUBTEST_2( sparse_product(SparseMatrix<std::complex<double> >(16, 16)) );
+ CALL_SUBTEST_1( sparse_product(SparseMatrix<double>(33, 33)) );
- CALL_SUBTEST( sparse_product(DynamicSparseMatrix<double>(8, 8)) );
+ CALL_SUBTEST_3( sparse_product(DynamicSparseMatrix<double>(8, 8)) );
}
}