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/uuid | |
parent | c81e514143877a5e2356fc58856cafc63488e041 (diff) |
Fortify tests against NDEBUG
Diffstat (limited to 'tests/uuid')
-rw-r--r-- | tests/uuid/driver.cxx | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/uuid/driver.cxx b/tests/uuid/driver.cxx index d8dae23..63e5bc7 100644 --- a/tests/uuid/driver.cxx +++ b/tests/uuid/driver.cxx @@ -5,13 +5,15 @@ # include <rpc.h> // GUID #endif -#include <cassert> #include <sstream> #include <iostream> #include <libbutl/uuid.hxx> #include <libbutl/uuid-io.hxx> +#undef NDEBUG +#include <cassert> + using namespace std; using namespace butl; |