aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJack Lloyd <[email protected]>2019-01-03 09:24:21 -0500
committerJack Lloyd <[email protected]>2019-01-03 09:24:21 -0500
commit21cd8e74c93fdb7dde95bdb20f7011a14f53c1c8 (patch)
tree13a6f627f46bd10f1dbdf9f48e8208f6800c1295
parent3b7ac3da76c8a883a48938bf9505b7b27a851a8c (diff)
Fix bogus macro check that disabled a test
-rw-r--r--src/tests/test_mceliece.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tests/test_mceliece.cpp b/src/tests/test_mceliece.cpp
index ba463ebcd..ed4b5a597 100644
--- a/src/tests/test_mceliece.cpp
+++ b/src/tests/test_mceliece.cpp
@@ -32,7 +32,7 @@ namespace {
#if defined(BOTAN_HAS_MCELIECE)
-#if defined(BOTAN_HAS_HMAC_DRBG) && defined(BOTAN_HAS_SHA2_32) && defined(BOTAN_HASH_SHA2_64)
+#if defined(BOTAN_HAS_HMAC_DRBG) && defined(BOTAN_HAS_SHA2_32) && defined(BOTAN_HAS_SHA2_64)
class McEliece_Keygen_Encrypt_Test final : public Text_Based_Test
{
public: