mirror of https://github.com/openssl/openssl.git
Fix test/recipes/90-test_fipsload.t to use bldtop_file for the FIPS module
It used bldtop_dir(), which is incorrect for files. Reviewed-by: Tomas Mraz <tomas@openssl.org> Reviewed-by: Paul Dale <pauli@openssl.org> (Merged from https://github.com/openssl/openssl/pull/16532)
This commit is contained in:
parent
116799ff6a
commit
c6ee5d5b42
|
@ -6,7 +6,7 @@
|
||||||
# in the file LICENSE in the source distribution or at
|
# in the file LICENSE in the source distribution or at
|
||||||
# https://www.openssl.org/source/license.html
|
# https://www.openssl.org/source/license.html
|
||||||
|
|
||||||
use OpenSSL::Test qw/:DEFAULT srctop_dir bldtop_dir/;
|
use OpenSSL::Test qw/:DEFAULT srctop_dir bldtop_dir bldtop_file/;
|
||||||
use OpenSSL::Test::Utils;
|
use OpenSSL::Test::Utils;
|
||||||
|
|
||||||
BEGIN {
|
BEGIN {
|
||||||
|
@ -25,7 +25,7 @@ plan skip_all => 'Test is disabled in an address sanitizer build' unless disable
|
||||||
|
|
||||||
plan tests => 1;
|
plan tests => 1;
|
||||||
|
|
||||||
my $fips = bldtop_dir('providers', platform->dso('fips'));
|
my $fips = bldtop_file('providers', platform->dso('fips'));
|
||||||
|
|
||||||
ok(run(test(['moduleloadtest', $fips, 'OSSL_provider_init'])),
|
ok(run(test(['moduleloadtest', $fips, 'OSSL_provider_init'])),
|
||||||
"trying to load $fips in its own");
|
"trying to load $fips in its own");
|
||||||
|
|
Loading…
Reference in New Issue