diff options
author | Pauli <pauli@openssl.org> | 2021-07-16 02:31:41 +0200 |
---|---|---|
committer | Pauli <pauli@openssl.org> | 2021-07-17 09:51:08 +0200 |
commit | c3c00c7acd040f8e410fffffb5808d2f1c3ac9b9 (patch) | |
tree | dd0dcd74dd98573279d968638f8811fcf6cfdffd /Configure | |
parent | doc: It is not possible to use SSL_OP_* value in preprocessor conditions (diff) | |
download | openssl-c3c00c7acd040f8e410fffffb5808d2f1c3ac9b9.tar.xz openssl-c3c00c7acd040f8e410fffffb5808d2f1c3ac9b9.zip |
config: enable ACVP test case if FIPS is enabled.
Reviewed-by: Tomas Mraz <tomas@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/16095)
Diffstat (limited to 'Configure')
-rwxr-xr-x | Configure | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -532,7 +532,6 @@ my %deprecated_disablables = ( our %disabled = ( # "what" => "comment" "fips" => "default", - "acvp-tests" => "default", "asan" => "default", "buildtest-c++" => "default", "crypto-mdebug" => "default", @@ -638,7 +637,7 @@ my @disable_cascades = ( "cmp" => [ "crmf" ], - "fips" => [ "fips-securitychecks" ], + "fips" => [ "fips-securitychecks", "acvp-tests" ], "deprecated-3.0" => [ "engine", "srp" ] ); |