From 875c3c7b997fc810a3a637d4c25e16e5e8eded8f Mon Sep 17 00:00:00 2001 From: Lukas Cejka <lukas.ostatek@gmail.com> Date: Sun, 6 Oct 2019 21:35:36 +0200 Subject: [PATCH] Fixed BiEllpack. Uncommented tests that didn't work before. Removed useless comments. --- src/UnitTests/Matrices/SparseMatrixTest_BiEllpack.h | 6 ------ 1 file changed, 6 deletions(-) diff --git a/src/UnitTests/Matrices/SparseMatrixTest_BiEllpack.h b/src/UnitTests/Matrices/SparseMatrixTest_BiEllpack.h index 56b38114e0..31bee7e07a 100644 --- a/src/UnitTests/Matrices/SparseMatrixTest_BiEllpack.h +++ b/src/UnitTests/Matrices/SparseMatrixTest_BiEllpack.h @@ -79,7 +79,6 @@ TYPED_TEST( BiEllpackMatrixTest, setDimensionsTest ) // std::cout << "\n TODO: Finish implementation of getNonZeroRowLength (Only non-zero elements, not the number of allocated elements.)\n\n"; //} -// WORKING TYPED_TEST( BiEllpackMatrixTest, setLikeTest ) { using BiEllpackMatrixType = typename TestFixture::BiEllpackMatrixType; @@ -87,7 +86,6 @@ TYPED_TEST( BiEllpackMatrixTest, setLikeTest ) test_SetLike< BiEllpackMatrixType, BiEllpackMatrixType >(); } -// WORKING TYPED_TEST( BiEllpackMatrixTest, resetTest ) { using BiEllpackMatrixType = typename TestFixture::BiEllpackMatrixType; @@ -95,12 +93,8 @@ TYPED_TEST( BiEllpackMatrixTest, resetTest ) test_Reset< BiEllpackMatrixType >(); } -#ifdef NOT_WORKING - TYPED_TEST( BiEllpackMatrixTest, setElementTest ) { - // This test will segfault in the first test where Device is Cuda. - // This test doesn't return the correct values. using BiEllpackMatrixType = typename TestFixture::BiEllpackMatrixType; test_SetElement< BiEllpackMatrixType >(); -- GitLab