From: Peter Munch Date: Sun, 2 Jul 2023 02:51:40 +0000 (+0200) Subject: Extend test X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6bf934853d12f8661bd7be582a13a6414b762382;p=dealii.git Extend test --- diff --git a/tests/simplex/orientation_03.cc b/tests/simplex/orientation_03.cc index 62bae39dfc..ba895f448b 100644 --- a/tests/simplex/orientation_03.cc +++ b/tests/simplex/orientation_03.cc @@ -29,12 +29,10 @@ template void -test() +test(const unsigned int orientation) { Triangulation tria; - const unsigned int orientation = 3; // 3, 5 - if (false) { unsigned int ref = 2; @@ -214,7 +212,9 @@ main() { initlog(); // test<2>(); - test<3>(); + + for (unsigned int o = 0; o < 6; ++o) + test<3>(o); deallog << "OK!" << std::endl; }