aboutsummaryrefslogtreecommitdiff
path: root/tests/link
diff options
context:
space:
mode:
authorKaren Arutyunov <karen@codesynthesis.com>2021-09-24 13:32:30 +0300
committerKaren Arutyunov <karen@codesynthesis.com>2021-09-24 13:32:30 +0300
commit7a4fc37f264cdb67f2f83fa92703c869215bbc86 (patch)
tree0cdd96084be9b5bd08fa81fbb9191f18450300be /tests/link
parentc81e514143877a5e2356fc58856cafc63488e041 (diff)
Fortify tests against NDEBUG
Diffstat (limited to 'tests/link')
-rw-r--r--tests/link/driver.cxx5
1 files changed, 3 insertions, 2 deletions
diff --git a/tests/link/driver.cxx b/tests/link/driver.cxx
index 231da4b..6b898f5 100644
--- a/tests/link/driver.cxx
+++ b/tests/link/driver.cxx
@@ -1,8 +1,6 @@
// file : tests/link/driver.cxx -*- C++ -*-
// license : MIT; see accompanying LICENSE file
-#include <cassert>
-
#ifndef __cpp_lib_modules_ts
#include <set>
#include <utility> // pair
@@ -30,6 +28,9 @@ import butl.filesystem;
#include <libbutl/filesystem.mxx>
#endif
+#undef NDEBUG
+#include <cassert>
+
using namespace std;
using namespace butl;