From: David Wells Date: Wed, 18 Apr 2018 03:34:22 +0000 (-0400) Subject: Modify a test to use the original output. X-Git-Tag: v9.0.0-rc1~154^2~2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d0bb7a8fc7250b769e958d8a093d9ad717c238d2;p=dealii.git Modify a test to use the original output. The original version of this test relied on there not being a set manifold on the interior. Since the point of this test is to check for a particular crash its okay to ignore the curved geometry part. --- diff --git a/tests/bits/tria_crash_01.cc b/tests/bits/tria_crash_01.cc index 9274f2c42a..3d61821563 100644 --- a/tests/bits/tria_crash_01.cc +++ b/tests/bits/tria_crash_01.cc @@ -41,6 +41,7 @@ int main () const unsigned int dim=3; Triangulation tria; GridGenerator::cylinder(tria, 1, .7); + tria.reset_all_manifolds(); deallog << "n_cells=" << tria.n_active_cells() << std::endl; @@ -77,6 +78,4 @@ int main () tria.execute_coarsening_and_refinement(); deallog << "n_cells=" << tria.n_active_cells() << std::endl; - - return 0; }