]> git.ipfire.org Git - thirdparty/openssl.git/commitdiff
Fix krb5 external test failure
authorRichard Levitte <levitte@openssl.org>
Mon, 3 Feb 2020 15:34:58 +0000 (15:34 +0000)
committerMatt Caswell <matt@openssl.org>
Mon, 3 Feb 2020 17:19:06 +0000 (17:19 +0000)
The krb5 test requires the legacy module to be loaded in order to work.
It also seems to be senstive to using relative paths, so we use absolute
ones instead.

[extended tests]

Reviewed-by: Matthias St. Pierre <Matthias.St.Pierre@ncp-e.com>
Reviewed-by: Matt Caswell <matt@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/10992)

test/recipes/95-test_external_krb5.t

index 0f2be87902d66e32d2aa64dcdd01f1caff4ac21f..889626a1be3b429d5b52f298997433b153e66c50 100644 (file)
@@ -10,6 +10,7 @@
 use OpenSSL::Test;
 use OpenSSL::Test::Utils;
 use OpenSSL::Test qw/:DEFAULT data_file srctop_file bldtop_dir/;
+use Cwd qw(abs_path);
 
 setup("test_external_krb5");
 
@@ -20,6 +21,7 @@ plan skip_all => "krb5 not available"
 
 plan tests => 1;
 
-$ENV{OPENSSL_CONF} = srctop_file("test", "default-and-legacy.cnf");
+$ENV{OPENSSL_MODULES} = abs_path($ENV{OPENSSL_MODULES});
+$ENV{OPENSSL_CONF} = abs_path(srctop_file("test", "default-and-legacy.cnf"));
 
 ok(run(cmd([data_file("krb5.sh")])), "running krb5 tests");