test/recipes/30-test_afalg.t: set OPENSSL_ENGINES correctly
authorRichard Levitte <levitte@openssl.org>
Wed, 7 Feb 2018 13:02:49 +0000 (14:02 +0100)
committerRichard Levitte <levitte@openssl.org>
Wed, 7 Feb 2018 15:15:47 +0000 (16:15 +0100)
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)

test/recipes/30-test_afalg.t

index c8cb67b758c4f177f217c777258a0539d99f9aa8..cf8a68f4f60f1e460406abc69b2cca8770b189e2 100644 (file)
@@ -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");