From 4b32706437c4038613e63f23ee569fe5fad640cc Mon Sep 17 00:00:00 2001 From: Daniel Arndt Date: Tue, 27 Apr 2021 11:38:09 -0400 Subject: [PATCH] Fix up tests for Intel --- include/deal.II/grid/tria.h | 5 +++++ .../unsubscribe_subscriptor.debug.output.intel | 6 ++++-- .../parameter_handler_25.output2 | 15 +++++++++------ 3 files changed, 18 insertions(+), 8 deletions(-) diff --git a/include/deal.II/grid/tria.h b/include/deal.II/grid/tria.h index b81045f50b..d84a0c4c4f 100644 --- a/include/deal.II/grid/tria.h +++ b/include/deal.II/grid/tria.h @@ -1532,7 +1532,12 @@ public: * automatically generated destructor would have a different one due to * member objects. */ +#ifdef __INTEL_COMPILER + virtual ~DistortedCellList() noexcept override + {} +#else virtual ~DistortedCellList() noexcept override = default; +#endif /** * A list of those cells among the coarse mesh cells that are deformed or diff --git a/tests/base/unsubscribe_subscriptor.debug.output.intel b/tests/base/unsubscribe_subscriptor.debug.output.intel index 4817452f84..cdd231ec98 100644 --- a/tests/base/unsubscribe_subscriptor.debug.output.intel +++ b/tests/base/unsubscribe_subscriptor.debug.output.intel @@ -7,7 +7,8 @@ An error occurred in file in function The violated condition was: it != counter_map.end() Additional information: - No subscriber with identifier subscribes to this object of class N6dealii11SubscriptorE. Consequently, it cannot be unsubscribed. + No subscriber with identifier subscribes to this object of class + N6dealii11SubscriptorE. Consequently, it cannot be unsubscribed. -------------------------------------------------------- DEAL::Exception: ExcMessage( "This Subscriptor object does not know anything about the supplied pointer!") @@ -18,6 +19,7 @@ An error occurred in file in function The violated condition was: validity_ptr_it != validity_pointers.end() Additional information: - This Subscriptor object does not know anything about the supplied pointer! + This Subscriptor object does not know anything about the supplied + pointer! -------------------------------------------------------- diff --git a/tests/parameter_handler/parameter_handler_25.output2 b/tests/parameter_handler/parameter_handler_25.output2 index 28acc10ab6..23c8e4fccd 100644 --- a/tests/parameter_handler/parameter_handler_25.output2 +++ b/tests/parameter_handler/parameter_handler_25.output2 @@ -18,11 +18,14 @@ An error occurred in file in function The violated condition was: entries_wrongly_not_set.size() == 0 Additional information: - Not all entries of the parameter handler that were declared with `has_to_be_set = true` have been set. The following parameters - - General.Precision - General.dim - - have not been set. A possible reason might be that you did not add these parameter to the input file or that their spelling is not correct. + Not all entries of the parameter handler that were declared with + `has_to_be_set = true` have been set. The following parameters + + General.Precision + General.dim + + have not been set. A possible reason might be that you did not add + these parameter to the input file or that their spelling is not + correct. -------------------------------------------------------- -- 2.39.5