From: Luca Heltai Date: Thu, 28 Nov 2019 18:47:38 +0000 (+0100) Subject: Added comments in tests. X-Git-Tag: v9.2.0-rc1~798^2~4 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a95011f1607a77fdabba4d0dea1513229b22772e;p=dealii.git Added comments in tests. --- diff --git a/tests/particles/particle_handler_10.cc b/tests/particles/particle_handler_10.cc index 0d8503441a..680949ae2f 100644 --- a/tests/particles/particle_handler_10.cc +++ b/tests/particles/particle_handler_10.cc @@ -90,6 +90,11 @@ main(int argc, char *argv[]) deallog.push("2d/2d"); test<2, 2>(); deallog.pop(); + // [TODO]: There is a bug that prevents this from working in dimensions <2,3> + // The construction of the bounding boxes is not robust in that case + // and there is no easy and obvious fix for the moment. Keep this here + // as a reminder that we still need to address that. + // deallog.push("2d/3d"); // test<2, 3>(); // deallog.pop(); diff --git a/tests/particles/particle_handler_11.cc b/tests/particles/particle_handler_11.cc index ce58531842..5f62a4c401 100644 --- a/tests/particles/particle_handler_11.cc +++ b/tests/particles/particle_handler_11.cc @@ -90,6 +90,11 @@ main(int argc, char *argv[]) deallog.push("2d/2d"); test<2, 2>(); deallog.pop(); + // [TODO]: There is a bug that prevents this from working in dimensions <2,3> + // The construction of the bounding boxes is not robust in that case + // and there is no easy and obvious fix for the moment. Keep this here + // as a reminder that we still need to address that. + // deallog.push("2d/3d"); // test<2, 3>(); // deallog.pop(); diff --git a/tests/particles/particle_handler_12.cc b/tests/particles/particle_handler_12.cc index bf180ca614..01edf8a094 100644 --- a/tests/particles/particle_handler_12.cc +++ b/tests/particles/particle_handler_12.cc @@ -91,6 +91,12 @@ main(int argc, char *argv[]) deallog.push("2d/2d"); test<2, 2>(); deallog.pop(); + + // [TODO]: There is a bug that prevents this from working in dimensions <2,3> + // The construction of the bounding boxes is not robust in that case + // and there is no easy and obvious fix for the moment. Keep this here + // as a reminder that we still need to address that. + // deallog.push("2d/3d"); // test<2, 3>(); // deallog.pop();