From: Matt Caswell Date: Wed, 2 Dec 2020 12:28:31 +0000 (+0000) Subject: Don't load the legacy provider in endecoder_legacy_test X-Git-Tag: openssl-3.0.0-alpha10~82 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=39e3daeead143f5599ec58d52ff54cbde3cf27d4;p=thirdparty%2Fopenssl.git Don't load the legacy provider in endecoder_legacy_test In spite of the name the endecoder_legacy_test does not need the legacy provider. Therefore we avoid loading it so that no-legacy builds still run the test successfully. Reviewed-by: Richard Levitte (Merged from https://github.com/openssl/openssl/pull/13595) --- diff --git a/test/recipes/04-test_encoder_decoder_legacy.t b/test/recipes/04-test_encoder_decoder_legacy.t index ef252a37669..d6671b2215d 100644 --- a/test/recipes/04-test_encoder_decoder_legacy.t +++ b/test/recipes/04-test_encoder_decoder_legacy.t @@ -22,6 +22,6 @@ plan tests => 1; $ENV{OPENSSL_MODULES} = abs_path(bldtop_dir("providers")); -$ENV{OPENSSL_CONF} = abs_path(srctop_file("test", "default-and-legacy.cnf")); +$ENV{OPENSSL_CONF} = abs_path(srctop_file("test", "default.cnf")); ok(run(test(["endecoder_legacy_test"])));