aboutsummaryrefslogtreecommitdiff
path: root/zencore/compactbinary.cpp
diff options
context:
space:
mode:
authorStefan Boberg <[email protected]>2021-09-20 10:15:12 +0200
committerStefan Boberg <[email protected]>2021-09-20 10:15:12 +0200
commit8d3024a7e09246e44bf6d9ea14a36e6b03032e85 (patch)
treec18c2536d108378e5cddcac21398efd8d28e437d /zencore/compactbinary.cpp
parentAdded testing.h to wrap doctest.h (diff)
downloadzen-8d3024a7e09246e44bf6d9ea14a36e6b03032e85.tar.xz
zen-8d3024a7e09246e44bf6d9ea14a36e6b03032e85.zip
It's not possible to compile out tests
Tests are now compiled in if `ZEN_WITH_TESTS=1`, and compiled out if not. Compiling tests out reduces the footprint of the resulting executables quite significantly.
Diffstat (limited to 'zencore/compactbinary.cpp')
-rw-r--r--zencore/compactbinary.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/zencore/compactbinary.cpp b/zencore/compactbinary.cpp
index b508d8fe8..f4908aa9a 100644
--- a/zencore/compactbinary.cpp
+++ b/zencore/compactbinary.cpp
@@ -2,12 +2,12 @@
#include "zencore/compactbinary.h"
+#include <zencore/compactbinaryvalidation.h>
#include <zencore/compress.h>
#include <zencore/endian.h>
#include <zencore/stream.h>
-#include "zencore/compactbinaryvalidation.h"
+#include <zencore/testing.h>
-#include <doctest/doctest.h>
#include <string_view>
namespace zen {
@@ -1146,6 +1146,7 @@ SaveCompactBinary(BinaryWriter& Ar, const CbObjectView& Object)
//////////////////////////////////////////////////////////////////////////
+#if ZEN_WITH_TESTS
void
uson_forcelink()
{
@@ -1297,5 +1298,6 @@ TEST_CASE("uson.null")
CHECK(Field.IsNull() == false);
}
}
+#endif
} // namespace zen