summaryrefslogtreecommitdiff
path: root/source4/script/tests/selftest.sh
diff options
context:
space:
mode:
authorStefan Metzmacher <metze@samba.org>2005-06-09 07:14:39 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 13:17:51 -0500
commit7931aed30de1f3222fe1d60042cf4951469a770f (patch)
tree0665ffa7c5d712fa7b3c1f1b9c950ea4605f206c /source4/script/tests/selftest.sh
parent32e935c8c67902dff2d089658f2877f60fd89b4e (diff)
downloadsamba-7931aed30de1f3222fe1d60042cf4951469a770f.tar.gz
samba-7931aed30de1f3222fe1d60042cf4951469a770f.tar.bz2
samba-7931aed30de1f3222fe1d60042cf4951469a770f.zip
r7421: - move test* functions to a seperate file
- print build farm style output when RUN_FROM_BUILD_FARM=yes metze (This used to be commit 7e567a6b69d05fa180bb4384b503969f79f18068)
Diffstat (limited to 'source4/script/tests/selftest.sh')
-rwxr-xr-xsource4/script/tests/selftest.sh14
1 files changed, 3 insertions, 11 deletions
diff --git a/source4/script/tests/selftest.sh b/source4/script/tests/selftest.sh
index f9f4b766db..436ca719dc 100755
--- a/source4/script/tests/selftest.sh
+++ b/source4/script/tests/selftest.sh
@@ -20,16 +20,8 @@ PRIVATEDIR=$PREFIX/private
NCALRPCDIR=$PREFIX/ncalrpc
LOCKDIR=$PREFIX/lockdir
-testok() {
- name=`basename $1`
- failed=$2
- if [ x"$failed" = x"0" ];then
- echo "ALL OK ($name)";
- else
- echo "$failed TESTS FAILED ($name)";
- fi
- exit $failed
-}
+incdir=`dirname $0`
+. $incdir/test_functions.sh
rm -rf $PREFIX/*
mkdir -p $PRIVATEDIR $LIBDIR $PIDDIR $NCALRPCDIR $LOCKDIR $TMPDIR
@@ -74,4 +66,4 @@ END=`date`
echo "START: $START ($0)";
echo "END: $END ($0)";
-testok $0 $failed
+teststatus $0 $failed