]> www.wagner.pp.ru Git - openssl-gost/engine.git/commitdiff
test/run_tests: extend support for more operating systems 161/head
authorRichard Levitte <richard@levitte.org>
Sun, 25 Aug 2019 09:32:21 +0000 (11:32 +0200)
committerRichard Levitte <richard@levitte.org>
Sun, 25 Aug 2019 09:35:19 +0000 (11:35 +0200)
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

test/run_tests

index a6709fdce2bd1b776ae96d213244d5b505333391..b9912cf3c5d68535c6b6a8ab574ae8b4239bb20e 100644 (file)
@@ -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'}));
 }