Skip to content
Snippets Groups Projects
Commit a9e73cbd authored by Elias Pipping's avatar Elias Pipping
Browse files

Tests: cover larger grids

parent f7a0f62a
No related branches found
No related tags found
No related merge requests found
...@@ -458,7 +458,8 @@ bool checkWithStandardGrids(TestSuite& suite) ...@@ -458,7 +458,8 @@ bool checkWithStandardGrids(TestSuite& suite)
{ {
bool passed = true; bool passed = true;
passed = passed and checkWithGrid<Dune::YaspGrid<2, Dune::EquidistantOffsetCoordinates<double,2> > >(suite, 2); passed = passed and checkWithGrid<Dune::YaspGrid<2, Dune::EquidistantOffsetCoordinates<double,2> > >(suite, 6);
passed = passed and checkWithGrid<Dune::YaspGrid<3, Dune::EquidistantOffsetCoordinates<double,3> > >(suite, 4);
#if HAVE_UG #if HAVE_UG
passed = passed and checkWithGrid<Dune::UGGrid<2> >(suite, 5); passed = passed and checkWithGrid<Dune::UGGrid<2> >(suite, 5);
...@@ -467,7 +468,7 @@ bool checkWithStandardGrids(TestSuite& suite) ...@@ -467,7 +468,7 @@ bool checkWithStandardGrids(TestSuite& suite)
#if HAVE_DUNE_ALUGRID #if HAVE_DUNE_ALUGRID
passed = passed and checkWithGrid<Dune::ALUGrid<2, 2, Dune::simplex, Dune::nonconforming>>(suite, 5); passed = passed and checkWithGrid<Dune::ALUGrid<2, 2, Dune::simplex, Dune::nonconforming>>(suite, 5);
// passed = passed and checkWithGrid<Dune::ALUGrid<3, 3, Dune::simplex, Dune::nonconforming>>(suite, 3); passed = passed and checkWithGrid<Dune::ALUGrid<3, 3, Dune::simplex, Dune::nonconforming>>(suite, 3);
#endif #endif
return passed; return passed;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment