aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorRichard Levitte <richard@levitte.org>2019-08-25 11:32:21 +0200
committerRichard Levitte <richard@levitte.org>2019-08-25 11:35:19 +0200
commit28e0ece4de8a6d5988b96ec08849ee1737633f9c (patch)
tree5f9fb8ab5cca58c0fb305be845c375bf8aabdfee /test
parent2e5995f5f69963fb37186378ec01ccb31f0f5000 (diff)
downloadgost-engine-28e0ece4de8a6d5988b96ec08849ee1737633f9c.zip
gost-engine-28e0ece4de8a6d5988b96ec08849ee1737633f9c.tar.gz
gost-engine-28e0ece4de8a6d5988b96ec08849ee1737633f9c.tar.bz2
test/run_tests: extend support for more operating systems
Not all systems recognise LD_LIBRARY_PATH, and we therefore need to set other environment variables. Currently set: - LD_LIBRARY_PATH (Linux and ELF HP-UX) - DYLD_LIBRARY_PATH (MacOS X) - LIBPATH (AIX, OS/2) More can be added as the need arises. Fixes #146
Diffstat (limited to 'test')
-rw-r--r--test/run_tests11
1 files changed, 11 insertions, 0 deletions
diff --git a/test/run_tests b/test/run_tests
index a6709fd..b9912cf 100644
--- a/test/run_tests
+++ b/test/run_tests
@@ -28,8 +28,19 @@ if(defined $ENV{'OPENSSL_ROOT_DIR'}) {
$openssl_libdir = $pkgans;
$openssl_bindir = "$ENV{'OPENSSL_ROOT_DIR'}/bin";
}
+
+ # Variants of library paths
+ # Linux, ELF HP-UX
$ENV{'LD_LIBRARY_PATH'} =
join(':', $openssl_libdir, split(/:/, $ENV{'LD_LIBRARY_PATH'}));
+ # MacOS X
+ $ENV{'DYLD_LIBRARY_PATH'} =
+ join(':', $openssl_libdir, split(/:/, $ENV{'DYLD_LIBRARY_PATH'}));
+ # AIX, OS/2
+ $ENV{'LIBPATH'} =
+ join(':', $openssl_libdir, split(/:/, $ENV{'LIBPATH'}));
+
+ # Binary path, works on all Unix-like platforms
$ENV{'PATH'} =
join(':', $openssl_bindir, split(/:/, $ENV{'PATH'}));
}