aboutsummaryrefslogtreecommitdiff
path: root/tests/fs/path
diff options
context:
space:
mode:
authorKaren Arutyunov <karen@codesynthesis.com>2021-10-14 21:16:00 +0300
committerKaren Arutyunov <karen@codesynthesis.com>2021-10-14 21:23:56 +0300
commit79a99cfca1223aa1f17ceed0ab2fd5de16108b5b (patch)
tree63862c2f48f1314e33cf8283a1a52e13a399178b /tests/fs/path
parent8653effc5751e68e36e7e86db7a953a00dde8439 (diff)
Fortify tests against NDEBUG
Diffstat (limited to 'tests/fs/path')
-rw-r--r--tests/fs/path/driver.cxx4
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/fs/path/driver.cxx b/tests/fs/path/driver.cxx
index ca1f2b6..75276d5 100644
--- a/tests/fs/path/driver.cxx
+++ b/tests/fs/path/driver.cxx
@@ -1,11 +1,13 @@
// file : tests/fs/path/driver.cxx
// license : MIT; see accompanying LICENSE file
-#include <cassert>
#include <iostream>
#include <libcutl/fs/path.hxx>
+#undef NDEBUG
+#include <cassert>
+
using std::cerr;
using std::endl;