From 7d3901f6dbaace18c0307b1f6a20f38fe6a91807 Mon Sep 17 00:00:00 2001 From: Richard Levitte Date: Wed, 7 Feb 2018 14:02:49 +0100 Subject: [PATCH 1/1] 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) --- test/recipes/30-test_afalg.t | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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"); -- 2.34.1