From 39e3daeead143f5599ec58d52ff54cbde3cf27d4 Mon Sep 17 00:00:00 2001 From: Matt Caswell Date: Wed, 2 Dec 2020 12:28:31 +0000 Subject: [PATCH] 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) --- test/recipes/04-test_encoder_decoder_legacy.t | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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"]))); -- 2.47.2