summaryrefslogtreecommitdiffstats
path: root/test/evp_extra_test.c
diff options
context:
space:
mode:
authorPauli <pauli@openssl.org>2022-09-19 10:28:25 +1000
committerPauli <pauli@openssl.org>2022-09-21 17:02:59 +1000
commit919adfcf6683d82f876060b6cf9f57e875d547b2 (patch)
tree0b2c6615dfa3802004324f4f1a6dcb231d319443 /test/evp_extra_test.c
parent200d844782956b4c6db9bdd92a53113d9c2dc3c7 (diff)
Remove FIPS condition on SM2 test.
Reviewed-by: Richard Levitte <levitte@openssl.org> Reviewed-by: Tomas Mraz <tomas@openssl.org> (Merged from https://github.com/openssl/openssl/pull/19237)
Diffstat (limited to 'test/evp_extra_test.c')
-rw-r--r--test/evp_extra_test.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/evp_extra_test.c b/test/evp_extra_test.c
index 23f92f26f0..9e7a41d0ac 100644
--- a/test/evp_extra_test.c
+++ b/test/evp_extra_test.c
@@ -1812,7 +1812,7 @@ static int test_EC_keygen_with_enc(int idx)
}
#endif
-#if !defined(OPENSSL_NO_SM2) && !defined(FIPS_MODULE)
+#if !defined(OPENSSL_NO_SM2)
static int test_EVP_SM2_verify(void)
{
@@ -4552,7 +4552,7 @@ int setup_tests(void)
#ifndef OPENSSL_NO_EC
ADD_ALL_TESTS(test_EC_keygen_with_enc, OSSL_NELEM(ec_encodings));
#endif
-#if !defined(OPENSSL_NO_SM2) && !defined(FIPS_MODULE)
+#if !defined(OPENSSL_NO_SM2)
ADD_TEST(test_EVP_SM2);
ADD_TEST(test_EVP_SM2_verify);
#endif