aboutsummaryrefslogtreecommitdiff
path: root/src/zencore/include
diff options
context:
space:
mode:
authorDan Engelbrecht <[email protected]>2024-02-27 10:18:02 +0100
committerGitHub <[email protected]>2024-02-27 10:18:02 +0100
commitb155d303757766044c383d2d957a04c08b12bf64 (patch)
tree11403dedb4a0e5e55352745c84574b197d1b494f /src/zencore/include
parentremove reference caching (#658) (diff)
downloadzen-b155d303757766044c383d2d957a04c08b12bf64.tar.xz
zen-b155d303757766044c383d2d957a04c08b12bf64.zip
improved block store logging and more gcv2 tests (#659)
* improved gc/blockstore logging * more gcv2 tests
Diffstat (limited to 'src/zencore/include')
-rw-r--r--src/zencore/include/zencore/testutils.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/zencore/include/zencore/testutils.h b/src/zencore/include/zencore/testutils.h
index f5526945a..215fb71a8 100644
--- a/src/zencore/include/zencore/testutils.h
+++ b/src/zencore/include/zencore/testutils.h
@@ -34,6 +34,15 @@ struct ScopedCurrentDirectoryChange
IoBuffer CreateRandomBlob(uint64_t Size);
+struct FalseType
+{
+ static const bool Enabled = false;
+};
+struct TrueType
+{
+ static const bool Enabled = true;
+};
+
} // namespace zen
#endif // ZEN_WITH_TESTS