This commit is contained in:
Pierangelo Masarati 2006-01-13 10:55:13 +00:00
parent d48653d64a
commit cad464e96d
5 changed files with 13 additions and 23 deletions

View File

@ -22,7 +22,7 @@ cn: User 1
sn: User 1 sn: User 1
uid: user1 uid: user1
uidNumber: 500 uidNumber: 500
userPassword: {crypt}675B8Gwn6RJyY userPassword: abc
homeDirectory: /home/user1 homeDirectory: /home/user1
gidNumber: 10 gidNumber: 10
gecos: User 1 gecos: User 1
@ -47,7 +47,7 @@ homeDirectory: /home/user3
loginShell: /bin/false loginShell: /bin/false
gecos: Slave gecos: Slave
gidNumber: 100 gidNumber: 100
userPassword: {crypt}675B8Gwn6RJyY userPassword: abc
cn: Slave cn: Slave
sn: Slave sn: Slave
@ -62,7 +62,7 @@ gecos: User 2
loginShell: /bin/false loginShell: /bin/false
homeDirectory: /home/user2 homeDirectory: /home/user2
gidNumber: 100 gidNumber: 100
userPassword: {crypt}675B8Gwn6RJyY userPassword: abc
dn: ou=Special,dc=example,dc=com dn: ou=Special,dc=example,dc=com
objectClass: organizationalUnit objectClass: organizationalUnit
@ -78,6 +78,6 @@ uidNumber: 6319
homeDirectory: /home/special1 homeDirectory: /home/special1
gecos: Special1 gecos: Special1
loginShell: /bin/false loginShell: /bin/false
userPassword: {crypt}675B8Gwn6RJyY userPassword: abc
gidNumber: 100 gidNumber: 100

View File

@ -88,4 +88,7 @@ done
test $KILLSERVERS != no && kill -HUP $KILLPIDS test $KILLSERVERS != no && kill -HUP $KILLPIDS
echo ">>>>> Test succeeded" echo ">>>>> Test succeeded"
test $KILLSERVERS != no && wait
exit 0 exit 0

View File

@ -42,8 +42,10 @@ directory @TESTDIR@/db.2.a
# Indices to maintain # Indices to maintain
#bdb#index default pres,eq #bdb#index default pres,eq
#bdb#index objectClass eq
#bdb#index sn pres,eq,sub #bdb#index sn pres,eq,sub
#hdb#index default pres,eq #hdb#index default pres,eq
#hdb#index objectClass eq
#hdb#index sn pres,eq,sub #hdb#index sn pres,eq,sub
database @BACKEND@ database @BACKEND@
@ -54,9 +56,9 @@ directory @TESTDIR@/db.1.a
# Indices to maintain # Indices to maintain
#bdb#index default pres,eq #bdb#index default pres,eq
#bdb#index sn pres,eq,sub
#bdb#index objectClass eq #bdb#index objectClass eq
#bdb#index sn pres,eq,sub
#hdb#index default pres,eq #hdb#index default pres,eq
#hdb#index sn pres,eq,sub
#hdb#index objectClass eq #hdb#index objectClass eq
#hdb#index sn pres,eq,sub

View File

@ -64,21 +64,8 @@ if test $RC != 0 ; then
exit $RC exit $RC
fi fi
echo "Running slapadd to create glue entry..."
. $CONFFILTER $BACKEND $MONITORDB < $ITSDIR/slapd.conf > $CONF2
#$SLAPADD -f $CONF2 << EODATA
#dn: dc=example,dc=com
#objectClass: domain
#dc: example
#EODATA
#RC=$?
#if test $RC != 0 ; then
# echo "slapadd failed ($RC)!"
# test $KILLSERVERS != no && kill -HUP $KILLPIDS
# exit $RC
#fi
echo "Starting proxy slapd on TCP/IP port $PORT2..." echo "Starting proxy slapd on TCP/IP port $PORT2..."
. $CONFFILTER $BACKEND $MONITORDB < $ITSDIR/slapd.conf > $CONF2
$SLAPD -f $CONF2 -h $URI2 -d $LVL $TIMING > $LOG2 2>&1 & $SLAPD -f $CONF2 -h $URI2 -d $LVL $TIMING > $LOG2 2>&1 &
PROXYPID=$! PROXYPID=$!
if test $WAIT != 0 ; then if test $WAIT != 0 ; then
@ -128,7 +115,7 @@ if test $RC != 0 ; then
fi fi
SLEEP=2 SLEEP=2
echo "Stopping the provider and sleeping $SLEEP seconds..." echo "Stopping the server and sleeping $SLEEP seconds..."
kill -HUP "$SERVERPID" kill -HUP "$SERVERPID"
wait $SERVERPID wait $SERVERPID
sleep $SLEEP sleep $SLEEP

View File

@ -16,7 +16,6 @@
SHTOOL="$SRCDIR/../build/shtool" SHTOOL="$SRCDIR/../build/shtool"
TB=`$SHTOOL echo -e "%B"` TB=`$SHTOOL echo -e "%B"`
TN=`$SHTOOL echo -e "%b"` TN=`$SHTOOL echo -e "%b"`
SLEEPTIME=10
echo "#######################################################################" echo "#######################################################################"
echo "### ###" echo "### ###"
@ -46,6 +45,5 @@ for CMD in $SRCDIR/data/regressions/its*/its*; do
fi fi
echo ">>>>> waiting $SLEEPTIME seconds for things to exit" echo ">>>>> waiting $SLEEPTIME seconds for things to exit"
sleep $SLEEPTIME
echo "" echo ""
done done