diff options
author | Karen Arutyunov <karen@codesynthesis.com> | 2021-09-24 12:31:43 +0300 |
---|---|---|
committer | Karen Arutyunov <karen@codesynthesis.com> | 2021-09-24 12:31:43 +0300 |
commit | dec742c5fa8a8ab35b2bbe96f990a84959164f66 (patch) | |
tree | 7a89dd3bee22062fe0d7aa99366988cc7713bbb1 /libbuild2/script/regex.test.cxx | |
parent | 32b728b7e9ef2505220e8a4d7dffb4bfda94e16e (diff) |
Fortify tests against NDEBUG
Diffstat (limited to 'libbuild2/script/regex.test.cxx')
-rw-r--r-- | libbuild2/script/regex.test.cxx | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/libbuild2/script/regex.test.cxx b/libbuild2/script/regex.test.cxx index 36d47e1..9ec2432 100644 --- a/libbuild2/script/regex.test.cxx +++ b/libbuild2/script/regex.test.cxx @@ -6,6 +6,9 @@ #include <libbuild2/script/regex.hxx> +#undef NDEBUG +#include <cassert> + using namespace std; using namespace build2::script::regex; |