[openssl-commits] [openssl] OpenSSL_1_1_1-stable update
Matt Caswell
matt at openssl.org
Sun Jan 6 10:05:30 UTC 2019
The branch OpenSSL_1_1_1-stable has been updated
via 980f7419cb3d7343d4f76ff648f5785b75a2efc4 (commit)
from 56806f432b6c0cabbc46ebcdf6a9a6009489c0c0 (commit)
- Log -----------------------------------------------------------------
commit 980f7419cb3d7343d4f76ff648f5785b75a2efc4
Author: Matt Caswell <matt at openssl.org>
Date: Fri Jan 4 10:24:19 2019 +0000
Fix no-cmac
Reviewed-by: Tim Hudson <tjh at openssl.org>
Reviewed-by: Richard Levitte <levitte at openssl.org>
(Merged from https://github.com/openssl/openssl/pull/7979)
(cherry picked from commit 87bbbfb1e4fc2035e8f9ec1d6313a41c410a3218)
-----------------------------------------------------------------------
Summary of changes:
test/recipes/90-test_gost.t | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/test/recipes/90-test_gost.t b/test/recipes/90-test_gost.t
index c7bbb4e..0e33f5a 100644
--- a/test/recipes/90-test_gost.t
+++ b/test/recipes/90-test_gost.t
@@ -12,11 +12,11 @@ use OpenSSL::Test qw/:DEFAULT srctop_file/;
setup("test_gost");
# The GOST ciphers are dynamically loaded via the GOST engine, so we must be
-# able to support that. The engine also uses DSA and CMS symbols, so we skip
-# this test on no-dsa or no-cms.
+# able to support that. The engine also uses DSA, CMS and CMAC symbols, so we
+# skip this test on no-dsa, no-cms or no-cmac.
plan skip_all => "GOST support is disabled in this OpenSSL build"
if disabled("gost") || disabled("engine") || disabled("dynamic-engine")
- || disabled("dsa") || disabled("cms");
+ || disabled("dsa") || disabled("cms") || disabled("cmac");
plan skip_all => "TLSv1.3 or TLSv1.2 are disabled in this OpenSSL build"
if disabled("tls1_3") || disabled("tls1_2");
More information about the openssl-commits
mailing list