From: Richard Levitte Date: Wed, 7 Feb 2018 13:02:49 +0000 (+0100) Subject: test/recipes/30-test_afalg.t: set OPENSSL_ENGINES correctly X-Git-Tag: OpenSSL_1_1_1-pre1~42 X-Git-Url: https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff_plain;h=7d3901f6dbaace18c0307b1f6a20f38fe6a91807;hp=227a1e3f45bf06fdb00f2bdfb922f6f0d1f1d1de;ds=inline test/recipes/30-test_afalg.t: set OPENSSL_ENGINES correctly The afalg engine was moved down from engines/afalg/ to engines/, but the test wasn't changed accordingly. This was undetected because the test program didn't fail when it couldn't load the engine. Reviewed-by: Rich Salz (Merged from https://github.com/openssl/openssl/pull/5270) --- diff --git a/test/recipes/30-test_afalg.t b/test/recipes/30-test_afalg.t index c8cb67b758..cf8a68f4f6 100644 --- a/test/recipes/30-test_afalg.t +++ b/test/recipes/30-test_afalg.t @@ -18,6 +18,6 @@ plan skip_all => "$test_name not supported for this build" plan tests => 1; -$ENV{OPENSSL_ENGINES} = bldtop_dir("engines/afalg"); +$ENV{OPENSSL_ENGINES} = bldtop_dir("engines"); ok(run(test(["afalgtest"])), "running afalgtest");