From a55907954b1cb69d2cb7ed398c34cc79179ae7f5 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Carsten=20Gr=C3=A4ser?= <graeser@dune-project.org>
Date: Mon, 17 Oct 2016 14:08:22 +0200
Subject: [PATCH] [test] Silence test for implicite build mode

This reverts ddf49c23 and removes the check if
the average parameter behaves as expected.
---
 dune/istl/test/bcrsimplicitbuild.cc | 19 -------------------
 1 file changed, 19 deletions(-)

diff --git a/dune/istl/test/bcrsimplicitbuild.cc b/dune/istl/test/bcrsimplicitbuild.cc
index 0b74016e5..e53e3140b 100644
--- a/dune/istl/test/bcrsimplicitbuild.cc
+++ b/dune/istl/test/bcrsimplicitbuild.cc
@@ -331,24 +331,6 @@ void testImplicitMatrixBuilderExtendedConstructor()
   setMatrix(m);
 }
 
-
-void testAverageStorage()
-{
-  using M = Dune::BCRSMatrix<Dune::FieldMatrix<double,1,1>>;
-  for(auto j : {5, 0})
-  {
-    std::cout << j << std::endl;
-    M m(6, 6, 1, 0.0, M::implicit);
-
-    for(std::size_t i=0; i<6; ++i)
-      m.entry(j,i) = i;
-
-    m.compress();
-  }
-}
-
-
-
 int main()
 {
   int ret=0;
@@ -371,7 +353,6 @@ int main()
     ret+=testConstBracketOperatorBeforeCompress();
     testImplicitMatrixBuilder();
     testImplicitMatrixBuilderExtendedConstructor();
-    testAverageStorage();
   }catch(Dune::Exception& e) {
     std::cerr << e <<std::endl;
     return 1;
-- 
GitLab