From a9b630f95ba352430f1f25d25b538672fddce93c Mon Sep 17 00:00:00 2001 From: Karen Arutyunov Date: Fri, 24 Sep 2021 11:36:36 +0300 Subject: Fortify tests against NDEBUG --- tests/load/driver.cxx | 3 +++ tests/web/xhtml/driver.cxx | 3 +++ 2 files changed, 6 insertions(+) diff --git a/tests/load/driver.cxx b/tests/load/driver.cxx index 887818c..7ebbc93 100644 --- a/tests/load/driver.cxx +++ b/tests/load/driver.cxx @@ -19,6 +19,9 @@ #include #include +#undef NDEBUG +#include + using std::cerr; using std::endl; diff --git a/tests/web/xhtml/driver.cxx b/tests/web/xhtml/driver.cxx index a0135de..3393eb3 100644 --- a/tests/web/xhtml/driver.cxx +++ b/tests/web/xhtml/driver.cxx @@ -8,6 +8,9 @@ #include +#undef NDEBUG +#include + using namespace std; using namespace xml; -- cgit v1.1