setup a bit of a test framework

This commit is contained in:
Mike Frysinger
2008-03-24 07:17:05 +00:00
parent 1c9c2f9fcf
commit 486d517674
7 changed files with 58 additions and 11 deletions

22
test/setup_env.sh Executable file
View File

@@ -0,0 +1,22 @@
#!/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}}
export LD_LIBRARY_PATH=${top_builddir}/src/libeinfo:${top_builddir}/src/librc:${LD_LIBRARY_PATH}
export PATH=${top_builddir}/src/rc:${PATH}
${MAKE:-make} -s -C ${top_srcdir}/src/rc links
. ${top_srcdir}/sh/functions.sh
if [ $? -ne 0 ] ; then
echo "Sourcing functions.sh failed !?" 1>&2
exit 1
fi

5
test/skel.runtests.sh Executable file
View File

@@ -0,0 +1,5 @@
#!/bin/sh
# top_srcdir=${top_srcdir:-SET/THIS/PATH/OK!?}
. ${top_srcdir}/test/setup_env.sh