From 6bf934853d12f8661bd7be582a13a6414b762382 Mon Sep 17 00:00:00 2001 From: Peter Munch Date: Sun, 2 Jul 2023 04:51:40 +0200 Subject: [PATCH] Extend test --- tests/simplex/orientation_03.cc | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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; } -- 2.39.5