~ubuntu-branches/ubuntu/maverick/openldap/maverick-proposed

« back to all changes in this revision

Viewing changes to tests/scripts/all

  • Committer: Bazaar Package Importer
  • Author(s): Mathias Gug
  • Date: 2009-09-07 13:41:10 UTC
  • mto: This revision was merged to the branch mainline in revision 19.
  • Revision ID: james.westby@ubuntu.com-20090907134110-jsdrvn0atu1fex4m
Tags: upstream-2.4.18
ImportĀ upstreamĀ versionĀ 2.4.18

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
#! /bin/sh
2
 
# $OpenLDAP: pkg/ldap/tests/scripts/all,v 1.26.2.7 2009/03/24 18:10:51 quanah Exp $
 
2
# $OpenLDAP: pkg/ldap/tests/scripts/all,v 1.26.2.8 2009/08/13 00:05:07 quanah Exp $
3
3
## This work is part of OpenLDAP Software <http://www.openldap.org/>.
4
4
##
5
5
## Copyright 1998-2009 The OpenLDAP Foundation.
51
51
EOF
52
52
        fi
53
53
 
54
 
        echo ">>>>> Starting ${TB}`basename $CMD`${TN} ..."
 
54
        echo ">>>>> Starting ${TB}`basename $CMD`${TN} for $BACKEND..."
55
55
        $CMD
56
56
        RC=$?
57
57
        if test $RC -eq 0 ; then
58
 
                echo ">>>>> $CMD completed ${TB}OK${TN}."
 
58
                echo ">>>>> $CMD completed ${TB}OK${TN} for $BACKEND."
59
59
        else
60
 
                echo ">>>>> $CMD ${TB}failed${TN} (exit $RC)"
 
60
                echo ">>>>> $CMD ${TB}failed${TN} for $BACKEND (exit $RC)"
61
61
                exit $RC
62
62
        fi
63
63