]> git.ipfire.org Git - thirdparty/openssl.git/commitdiff
Don't load the legacy provider in endecoder_legacy_test
authorMatt Caswell <matt@openssl.org>
Wed, 2 Dec 2020 12:28:31 +0000 (12:28 +0000)
committerMatt Caswell <matt@openssl.org>
Fri, 11 Dec 2020 10:56:22 +0000 (10:56 +0000)
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 <levitte@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/13595)

test/recipes/04-test_encoder_decoder_legacy.t

index ef252a3766978d3008635fc7c3b53978b035f8bd..d6671b2215d1a323ebd6b8f4ece8387f9a92bf3c 100644 (file)
@@ -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"])));