aboutsummaryrefslogtreecommitdiffstats
path: root/test/recipes/30-test_afalg.t
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2018-02-07 14:02:49 +0100
committerRichard Levitte <levitte@openssl.org>2018-02-07 16:15:47 +0100
commit7d3901f6dbaace18c0307b1f6a20f38fe6a91807 (patch)
tree05e9a2516d7df0db81f3d099ec38bc058ec82fea /test/recipes/30-test_afalg.t
parent227a1e3f45bf06fdb00f2bdfb922f6f0d1f1d1de (diff)
downloadopenssl-7d3901f6dbaace18c0307b1f6a20f38fe6a91807.tar.gz
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 <rsalz@openssl.org> (Merged from https://github.com/openssl/openssl/pull/5270)
Diffstat (limited to 'test/recipes/30-test_afalg.t')
-rw-r--r--test/recipes/30-test_afalg.t2
1 files changed, 1 insertions, 1 deletions
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");