diff options
author | Karen Arutyunov <karen@codesynthesis.com> | 2021-09-24 13:32:30 +0300 |
---|---|---|
committer | Karen Arutyunov <karen@codesynthesis.com> | 2021-09-24 13:32:30 +0300 |
commit | 7a4fc37f264cdb67f2f83fa92703c869215bbc86 (patch) | |
tree | 0cdd96084be9b5bd08fa81fbb9191f18450300be /tests/builtin | |
parent | c81e514143877a5e2356fc58856cafc63488e041 (diff) |
Fortify tests against NDEBUG
Diffstat (limited to 'tests/builtin')
-rw-r--r-- | tests/builtin/driver.cxx | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/tests/builtin/driver.cxx b/tests/builtin/driver.cxx index bab74aa..7a32d8e 100644 --- a/tests/builtin/driver.cxx +++ b/tests/builtin/driver.cxx @@ -5,8 +5,6 @@ # include <libbutl/win32-utility.hxx> #endif -#include <cassert> - #ifndef __cpp_lib_modules_ts #include <string> #include <vector> @@ -40,6 +38,9 @@ import butl.timestamp; // to_stream(duration) #include <libbutl/timestamp.mxx> #endif +#undef NDEBUG +#include <cassert> + using namespace std; using namespace butl; |