From 486d5176749922bf0eb1ffc7d99a4b1b62740be3 Mon Sep 17 00:00:00 2001 From: Mike Frysinger Date: Mon, 24 Mar 2008 07:17:05 +0000 Subject: setup a bit of a test framework --- test/setup_env.sh | 22 ++++++++++++++++++++++ test/skel.runtests.sh | 5 +++++ 2 files changed, 27 insertions(+) create mode 100755 test/setup_env.sh create mode 100755 test/skel.runtests.sh (limited to 'test') diff --git a/test/setup_env.sh b/test/setup_env.sh new file mode 100755 index 00000000..96fdf9d2 --- /dev/null +++ b/test/setup_env.sh @@ -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 diff --git a/test/skel.runtests.sh b/test/skel.runtests.sh new file mode 100755 index 00000000..cda20027 --- /dev/null +++ b/test/skel.runtests.sh @@ -0,0 +1,5 @@ +#!/bin/sh + +# top_srcdir=${top_srcdir:-SET/THIS/PATH/OK!?} +. ${top_srcdir}/test/setup_env.sh + -- cgit v1.2.3