14 lines
507 B
Plaintext
14 lines
507 B
Plaintext
|
|
# #-- 10-older-test.test --#
|
||
|
|
# source the master var file when it's there
|
||
|
|
[ -f ../.tpkg.var.master ] && source ../.tpkg.var.master
|
||
|
|
# use .tpkg.var.test for in test variable passing
|
||
|
|
[ -f .tpkg.var.test ] && source .tpkg.var.test
|
||
|
|
# svnserve resets the path, you may need to adjust it, like this:
|
||
|
|
#PATH=$PATH:/usr/sbin:/sbin:/usr/local/bin:/usr/local/sbin:.
|
||
|
|
|
||
|
|
export LD_LIBRARY_PATH="../../.libs:$LD_LIBRARY_PATH"
|
||
|
|
export DYLD_LIBRARY_PATH="../../.libs:$DYLD_LIBRARY_PATH"
|
||
|
|
|
||
|
|
# run the test
|
||
|
|
./12-unit-tests-dnssec
|