Skip to content
Snippets Groups Projects
Commit 44257e9c authored by Lukas Cejka's avatar Lukas Cejka Committed by Tomáš Oberhuber
Browse files

Temporarily disabled operator= tests for ChunkedEllpack and enabled them for BiEllpack.

parent 589d4c64
No related branches found
No related tags found
1 merge request!45Matrices revision
...@@ -121,6 +121,13 @@ TYPED_TEST( BiEllpackMatrixTest, vectorProductTest ) ...@@ -121,6 +121,13 @@ TYPED_TEST( BiEllpackMatrixTest, vectorProductTest )
test_VectorProduct< BiEllpackMatrixType >(); test_VectorProduct< BiEllpackMatrixType >();
} }
TYPED_TEST( BiEllpackMatrixTest, operatorEqualsTest )
{
using BiEllpackMatrixType = typename TestFixture::BiEllpackMatrixType;
test_OperatorEquals< BiEllpackMatrixType >();
}
TYPED_TEST( BiEllpackMatrixTest, saveAndLoadTest ) TYPED_TEST( BiEllpackMatrixTest, saveAndLoadTest )
{ {
using BiEllpackMatrixType = typename TestFixture::BiEllpackMatrixType; using BiEllpackMatrixType = typename TestFixture::BiEllpackMatrixType;
......
...@@ -125,12 +125,12 @@ TYPED_TEST( ChunkedEllpackMatrixTest, vectorProductTest ) ...@@ -125,12 +125,12 @@ TYPED_TEST( ChunkedEllpackMatrixTest, vectorProductTest )
test_VectorProduct< ChunkedEllpackMatrixType >(); test_VectorProduct< ChunkedEllpackMatrixType >();
} }
TYPED_TEST( ChunkedEllpackMatrixTest, operatorEqualsTest ) //TYPED_TEST( ChunkedEllpackMatrixTest, operatorEqualsTest )
{ //{
using ChunkedEllpackMatrixType = typename TestFixture::ChunkedEllpackMatrixType; // using ChunkedEllpackMatrixType = typename TestFixture::ChunkedEllpackMatrixType;
//
test_OperatorEquals< ChunkedEllpackMatrixType >(); // test_OperatorEquals< ChunkedEllpackMatrixType >();
} //}
TYPED_TEST( ChunkedEllpackMatrixTest, saveAndLoadTest ) TYPED_TEST( ChunkedEllpackMatrixTest, saveAndLoadTest )
{ {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment