15 lines
509 B
Plaintext
15 lines
509 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="../../lib:$LD_LIBRARY_PATH"
|
||
|
|
export DYLD_LIBRARY_PATH="../../lib:$DYLD_LIBRARY_PATH"
|
||
|
|
|
||
|
|
# run the test
|
||
|
|
./13-unit-tests-base
|
||
|
|
exit $?
|