Commit 980f7419 authored by Matt Caswell's avatar Matt Caswell
Browse files

Fix no-cmac



Reviewed-by: default avatarTim Hudson <tjh@openssl.org>
Reviewed-by: default avatarRichard Levitte <levitte@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/7979)

(cherry picked from commit 87bbbfb1)
parent 56806f43
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -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");