diff options
| author | Martin Ridgers <[email protected]> | 2021-09-21 11:06:13 +0200 |
|---|---|---|
| committer | Martin Ridgers <[email protected]> | 2021-09-21 11:06:13 +0200 |
| commit | 68c951e0f440ffd483795dced737e88152c1a581 (patch) | |
| tree | 5c0910ca2a85b45fb05dba3ce457b7d156213894 /zencore/md5.cpp | |
| parent | Merge main into linux-mac (diff) | |
| parent | Trigger storage scrubbing pass at startup (diff) | |
| download | zen-68c951e0f440ffd483795dced737e88152c1a581.tar.xz zen-68c951e0f440ffd483795dced737e88152c1a581.zip | |
Merged main into linux-mac
Diffstat (limited to 'zencore/md5.cpp')
| -rw-r--r-- | zencore/md5.cpp | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/zencore/md5.cpp b/zencore/md5.cpp index 228c0feff..237f6cfdd 100644 --- a/zencore/md5.cpp +++ b/zencore/md5.cpp @@ -2,9 +2,9 @@ #include <zencore/md5.h> #include <zencore/string.h> +#include <zencore/testing.h> #include <zencore/zencore.h> -#include <doctest/doctest.h> #include <string.h> // big endian architectures need #define __BYTE_ORDER __BIG_ENDIAN @@ -425,6 +425,8 @@ MD5::ToHexString(StringBuilderBase& outBuilder) const // Testing related code follows... // +#if ZEN_WITH_TESTS + void md5_forcelink() { @@ -443,4 +445,6 @@ TEST_CASE("MD5") { } +#endif + } // namespace zen |