aboutsummaryrefslogtreecommitdiff
path: root/tests/roundtrip/driver.cxx
diff options
context:
space:
mode:
authorKaren Arutyunov <karen@codesynthesis.com>2021-10-14 21:28:24 +0300
committerKaren Arutyunov <karen@codesynthesis.com>2021-10-14 21:28:24 +0300
commit9137f385af0fe619a310b25be82ddfe3c6ae37e2 (patch)
tree031dc2ac372594f37996afbee9363eda0cad1234 /tests/roundtrip/driver.cxx
parente729667b0f34a39ce4a61339843af4154648667b (diff)
Fortify tests against NDEBUG
Diffstat (limited to 'tests/roundtrip/driver.cxx')
-rw-r--r--tests/roundtrip/driver.cxx4
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/roundtrip/driver.cxx b/tests/roundtrip/driver.cxx
index 02842ad..3cca872 100644
--- a/tests/roundtrip/driver.cxx
+++ b/tests/roundtrip/driver.cxx
@@ -3,12 +3,14 @@
#include <string>
#include <fstream>
-#include <cassert>
#include <iostream>
#include <libstudxml/parser.hxx>
#include <libstudxml/serializer.hxx>
+#undef NDEBUG
+#include <cassert>
+
using namespace std;
using namespace xml;