aboutsummaryrefslogtreecommitdiff
path: root/zenstore
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 /zenstore
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 'zenstore')
-rw-r--r--zenstore/CAS.cpp6
-rw-r--r--zenstore/basicfile.cpp6
-rw-r--r--zenstore/filecas.h2
3 files changed, 11 insertions, 3 deletions
diff --git a/zenstore/CAS.cpp b/zenstore/CAS.cpp
index a143230d3..320ca9e5a 100644
--- a/zenstore/CAS.cpp
+++ b/zenstore/CAS.cpp
@@ -5,12 +5,12 @@
#include "compactcas.h"
#include "filecas.h"
-#include <doctest/doctest.h>
#include <zencore/except.h>
#include <zencore/fmtutils.h>
#include <zencore/logging.h>
#include <zencore/memory.h>
#include <zencore/string.h>
+#include <zencore/testing.h>
#include <zencore/testutils.h>
#include <zencore/thread.h>
#include <zencore/uid.h>
@@ -194,6 +194,8 @@ CreateCasStore()
// Testing related code follows...
//
+#if ZEN_WITH_TESTS
+
TEST_CASE("CasStore")
{
ScopedTemporaryDirectory TempDir;
@@ -237,4 +239,6 @@ CAS_forcelink()
{
}
+#endif
+
} // namespace zen
diff --git a/zenstore/basicfile.cpp b/zenstore/basicfile.cpp
index 0b92a8979..fe54184cf 100644
--- a/zenstore/basicfile.cpp
+++ b/zenstore/basicfile.cpp
@@ -5,9 +5,9 @@
#include <zencore/except.h>
#include <zencore/filesystem.h>
#include <zencore/fmtutils.h>
+#include <zencore/testing.h>
#include <zencore/testutils.h>
-#include <doctest/doctest.h>
#include <fmt/format.h>
#include <gsl/gsl-lite.hpp>
@@ -158,6 +158,8 @@ BasicFile::FileSize()
return uint64_t(liFileSize.QuadPart);
}
+#if ZEN_WITH_TESTS
+
TEST_CASE("BasicFile")
{
ScopedCurrentDirectoryChange _;
@@ -174,4 +176,6 @@ basicfile_forcelink()
{
}
+#endif
+
} // namespace zen
diff --git a/zenstore/filecas.h b/zenstore/filecas.h
index 885973810..18102968a 100644
--- a/zenstore/filecas.h
+++ b/zenstore/filecas.h
@@ -17,7 +17,7 @@ namespace zen {
class BasicFile;
/** CAS storage strategy using a file-per-chunk storage strategy
-*/
+ */
struct FileCasStrategy
{