]> git.sur5r.net Git - openldap/commitdiff
allow to easily override the default loop number
authorPierangelo Masarati <ando@openldap.org>
Mon, 9 Jan 2006 15:26:40 +0000 (15:26 +0000)
committerPierangelo Masarati <ando@openldap.org>
Mon, 9 Jan 2006 15:26:40 +0000 (15:26 +0000)
tests/scripts/test036-meta-concurrency
tests/scripts/test039-glue-ldap-concurrency

index 329b8a1402e85d3de35cd499a559dd56cf52bac0..72c7f2ed879dcd67beb7d0b6ac26949c4f057ede 100755 (executable)
@@ -35,6 +35,10 @@ else
        echo ""
 fi
 
+if test x$TESTLOOPS = x ; then
+       TESTLOOPS=50
+fi
+
 rm -rf $TESTDIR
 
 mkdir -p $TESTDIR $DBDIR1 $DBDIR2
@@ -186,7 +190,7 @@ done
 
 echo "Using tester for concurrent server access..."
 $SLAPDTESTER -P "$PROGDIR" -d "$TESTDIR/$DATADIR" -h $LOCALHOST -p $PORT3 \
-       -D "cn=Manager,$METABASEDN" -w $PASSWD -l 50 -r 20 -F
+       -D "cn=Manager,$METABASEDN" -w $PASSWD -l $TESTLOOPS -r 20 -F
 RC=$?
 
 if test $RC != 0 ; then
index 42107777411d0dc7a68508f6d40a2115987583b3..9eee1ab4019e9b5ee3006c1e878c5c71165c9e34 100755 (executable)
@@ -28,6 +28,10 @@ if test $RWM = rwmno ; then
        exit 0
 fi 
 
+if test x$TESTLOOPS = x ; then
+       TESTLOOPS=50
+fi
+
 rm -rf $TESTDIR
 
 mkdir -p $TESTDIR $DBDIR1 $DBDIR2
@@ -163,7 +167,7 @@ done
 
 echo "Using tester for concurrent server access..."
 $SLAPDTESTER -P "$PROGDIR" -d "$TESTDIR/$DATADIR" -h $LOCALHOST -p $PORT3 \
-       -D "cn=Manager,$METABASEDN" -w $PASSWD -l 50 -r 20 -F
+       -D "cn=Manager,$METABASEDN" -w $PASSWD -l $TESTLOOPS -r 20 -F
 RC=$?
 
 if test $RC != 0 ; then