From: Daniel Arndt Date: Sun, 16 Feb 2020 04:10:10 +0000 (-0500) Subject: Redefine Assert as AssertThrow in tests X-Git-Tag: v9.2.0-rc1~503^2~3 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f23c21122056b5317ecff6a3a98a9ad4b8b5bbdd;p=dealii.git Redefine Assert as AssertThrow in tests --- diff --git a/tests/tests.h b/tests/tests.h index 98694ea31e..5de7e366e8 100644 --- a/tests/tests.h +++ b/tests/tests.h @@ -64,6 +64,9 @@ struct DisableWindowsDebugRuntimeDialog } deal_II_windows_crt_dialog; #endif +#undef Assert +#define Assert AssertThrow + // implicitly use the deal.II namespace everywhere, without us having to say // so in each and every testcase using namespace dealii;