diff options
Diffstat (limited to 'zencore/sha1.cpp')
| -rw-r--r-- | zencore/sha1.cpp | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/zencore/sha1.cpp b/zencore/sha1.cpp index 3cc2f5cdf..8b4e7897f 100644 --- a/zencore/sha1.cpp +++ b/zencore/sha1.cpp @@ -6,9 +6,9 @@ #include <zencore/sha1.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 @@ -357,6 +357,8 @@ SHA1::ToHexString(StringBuilderBase& outBuilder) const // Testing related code follows... // +#if ZEN_WITH_TESTS + void sha1_forcelink() { @@ -436,4 +438,6 @@ TEST_CASE("SHA1") } } +#endif + } // namespace zen |