[test suite] added DYLD_LIBRARY_PATH for Mac OS X 10.9

This commit is contained in:
Michael Rash 2013-11-12 23:05:16 -05:00
parent e75117616e
commit 1299a8ee87
2 changed files with 3 additions and 2 deletions

View File

@ -9,6 +9,6 @@
# to work properly.
#
LD_LIBRARY_PATH=../lib/.libs ./test-fwknop.pl $@
LD_LIBRARY_PATH=../lib/.libs DYLD_LIBRARY_PATH=../.libs ./test-fwknop.pl $@
exit

View File

@ -506,7 +506,8 @@ our $default_server_gpg_args_no_pw_hmac = "LD_LIBRARY_PATH=$lib_dir " .
### point the compiled binaries at the local libary path
### instead of any installed libfko instance
$ENV{'LD_LIBRARY_PATH'} = $lib_dir;
$ENV{'LD_LIBRARY_PATH'} = $lib_dir;
$ENV{'DYLD_LIBRARY_PATH'} = $lib_dir;
### import the tests from the various tests/ files
&import_test_files();