aboutsummaryrefslogtreecommitdiff
path: root/src/zencore/xxhash.cpp
diff options
context:
space:
mode:
authorStefan Boberg <[email protected]>2026-03-05 00:08:19 +0100
committerGitHub Enterprise <[email protected]>2026-03-05 00:08:19 +0100
commitd8940b27c8a5c070c3b48ca9e575929df8d1d888 (patch)
tree00fa4547ac968234d93aa5c77b573819e340dcd3 /src/zencore/xxhash.cpp
parentFixing various compiler issues (#807) (diff)
downloadzen-d8940b27c8a5c070c3b48ca9e575929df8d1d888.tar.xz
zen-d8940b27c8a5c070c3b48ca9e575929df8d1d888.zip
added TEST_SUITE_BEGIN/END around some TEST_CASEs which didn't have them (#809)
* added TEST_SUITE_BEGIN/END around some TEST_CASEs which didn't have them * fixed some stats issues * ScopedSpan should Initialize * annotated classes in stats.h with some documentation comments
Diffstat (limited to 'src/zencore/xxhash.cpp')
-rw-r--r--src/zencore/xxhash.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/zencore/xxhash.cpp b/src/zencore/xxhash.cpp
index 6d1050531..88a48dd68 100644
--- a/src/zencore/xxhash.cpp
+++ b/src/zencore/xxhash.cpp
@@ -59,6 +59,8 @@ xxhash_forcelink()
{
}
+TEST_SUITE_BEGIN("core.xxhash");
+
TEST_CASE("XXH3_128")
{
using namespace std::literals;
@@ -96,6 +98,8 @@ TEST_CASE("XXH3_128")
}
}
+TEST_SUITE_END();
+
#endif
} // namespace zen