1#! /bin/sh
2# $OpenLDAP$
3## This work is part of OpenLDAP Software <http://www.openldap.org/>.
4##
5## Copyright 1998-2011 The OpenLDAP Foundation.
6## All rights reserved.
7##
8## Redistribution and use in source and binary forms, with or without
9## modification, are permitted only as authorized by the OpenLDAP
10## Public License.
11##
12## A copy of this license is available in the file LICENSE in the
13## top-level directory of the distribution or, alternatively, at
14## <http://www.OpenLDAP.org/license.html>.
15
16SHTOOL="$SRCDIR/../build/shtool"
17
18TB="" TN=""
19if test -t 1 ; then
20	TB=`$SHTOOL echo -e "%B" 2>/dev/null`
21	TN=`$SHTOOL echo -e "%b" 2>/dev/null`
22fi
23
24echo "#######################################################################"
25echo "###                                                                 ###"
26echo "### regression tests                                                ###"
27echo "###                                                                 ###"
28echo "#######################################################################"
29echo "###"
30
31echo ">>>>> Executing all LDAP ITS regression tests"
32
33for CMD in $SRCDIR/data/regressions/its*/its*; do
34	# remove cruft from prior test
35	if test $PRESERVE = yes ; then
36		/bin/rm -rf testrun/db.*
37	else
38		/bin/rm -rf testrun
39	fi
40
41	echo ">>>>> Starting ${TB}`basename $CMD`${TN} ..."
42	$CMD
43	RC=$?
44	if test $RC -eq 0 ; then
45		echo ">>>>> $CMD completed ${TB}OK${TN}."
46	else
47		echo ">>>>> $CMD ${TB}failed${TN} (exit $RC)"
48		exit $RC
49	fi
50
51	echo ""
52done
53