21abe9821c
When the test suite is being run, we need our local directories in PATH and LD_LIBRARY_PATH before the system directories. This makes sure we run our tests using the currently built tree.
27 lines
622 B
Bash
Executable File
27 lines
622 B
Bash
Executable File
#!/bin/sh
|
|
|
|
if [ -z "${top_srcdir}" ] ; then
|
|
echo "You must set top_srcdir before sourcing this file" 1>&2
|
|
exit 1
|
|
fi
|
|
|
|
srcdir=${srcdir:-.}
|
|
top_builddir=${top_builddir:-${top_srcdir}}
|
|
builddir=${builddir:-${srcdir}}
|
|
|
|
if [ ! -f ${top_srcdir}/sh/functions.sh ] ; then
|
|
echo "functions.sh not yet created !?" 1>&2
|
|
exit 1
|
|
elif ! . ${top_srcdir}/sh/functions.sh; then
|
|
echo "Sourcing functions.sh failed !?" 1>&2
|
|
exit 1
|
|
fi
|
|
|
|
export LD_LIBRARY_PATH=${top_builddir}/src/libeinfo:${top_builddir}/src/librc:${LD_LIBRARY_PATH}
|
|
export PATH=${top_builddir}/src/rc:${PATH}
|
|
|
|
cd ${top_srcdir}/src/rc
|
|
${MAKE:-make} links >/dev/null
|
|
cd -
|
|
|