aboutsummaryrefslogtreecommitdiff
path: root/tests/small-forward-list
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/small-forward-list
parentc81e514143877a5e2356fc58856cafc63488e041 (diff)
Fortify tests against NDEBUG
Diffstat (limited to 'tests/small-forward-list')
-rw-r--r--tests/small-forward-list/driver.cxx5
1 files changed, 3 insertions, 2 deletions
diff --git a/tests/small-forward-list/driver.cxx b/tests/small-forward-list/driver.cxx
index 670fff1..1b8a14f 100644
--- a/tests/small-forward-list/driver.cxx
+++ b/tests/small-forward-list/driver.cxx
@@ -1,8 +1,6 @@
// file : tests/small-forward-list/driver.cxx -*- C++ -*-
// license : MIT; see accompanying LICENSE file
-#include <cassert>
-
#ifndef __cpp_lib_modules_ts
#include <string>
#include <iostream>
@@ -20,6 +18,9 @@ import butl.small_forward_list;
#include <libbutl/small-forward-list.mxx>
#endif
+#undef NDEBUG
+#include <cassert>
+
using namespace std;
using namespace butl;