]> git.sur5r.net Git - openldap/commitdiff
Minor cleanup to match the other tests:
authorHallvard Furuseth <hallvard@openldap.org>
Thu, 29 Sep 2005 22:26:43 +0000 (22:26 +0000)
committerHallvard Furuseth <hallvard@openldap.org>
Thu, 29 Sep 2005 22:26:43 +0000 (22:26 +0000)
Always mkdir $TESTDIR when making subdirs, and always use mkdir -p anyway.
Add or modify "test skipped" messages.
'exit 0' instead of 'exit'.

tests/scripts/sql-test001-concurrency
tests/scripts/test007-replication
tests/scripts/test009-referral
tests/scripts/test016-subref
tests/scripts/test019-syncreplication-cascade
tests/scripts/test021-certificate
tests/scripts/test031-component-filter
tests/scripts/test034-translucent
tests/scripts/test036-meta-concurrency
tests/scripts/test041-aci

index fe4da240a7e6eef0a8eb63065debf1ca1ced887c..2bb0d73fc8fc1c91c62ee8fab1edd44f53dc63cc 100755 (executable)
@@ -27,7 +27,7 @@ if test $RDBMS = "rdbmsno" ; then
 fi
 
 SQLDATADIR=$TESTDIR/sql-concurrency
-mkdir -p $SQLDATADIR
+mkdir -p $TESTDIR $SQLDATADIR
 
 echo "Starting slapd on TCP/IP port $PORT1..."
 . $CONFFILTER $BACKEND $MONITORDB < $SQLCONF > $CONF1
index e8f77b227729dd99bc3545efa4f140c7661826cb..8146f8299ecc87ba91770f4b7595b59145d33f6f 100755 (executable)
@@ -17,7 +17,7 @@ echo "running defines.sh"
 . $SRCDIR/scripts/defines.sh
 
 if test ! -x $SLURPD ; then
-       echo ">>>>> $SLURPD is not executable or do not exist."
+       echo ">>>>> $SLURPD is not executable or does not exist."
        echo ">>>>> Test skipped."
        exit 0
 fi
index e9781843a0cf1de1ea3e58150dba76f24aa64391..8fcd5b2ec6a750ddc1430496d927fd1b54e86cc9 100755 (executable)
@@ -20,7 +20,7 @@ echo "running defines.sh"
 # Test default referral
 #
 
-mkdir $TESTDIR $DBDIR1 $DBDIR2
+mkdir -p $TESTDIR $DBDIR1 $DBDIR2
 
 echo "Running slapadd to build slapd database..."
 . $CONFFILTER $BACKEND $MONITORDB < $CONF > $CONF1
index 4c39beb527ce3d4fab9295913b5b2f5f76afe7c4..c8326b8c2f43e69a828359f44ff333b385882af6 100755 (executable)
@@ -18,7 +18,7 @@ RCODE=10
 echo "running defines.sh"
 . $SRCDIR/scripts/defines.sh
 
-mkdir $TESTDIR $DBDIR1
+mkdir -p $TESTDIR $DBDIR1
 
 echo "Running slapadd to build slapd database..."
 . $CONFFILTER $BACKEND $MONITORDB < $RCONF > $CONF1
index 2aa89e47dccf57d8dcac64ac2171cb6d28d7acf7..3a599a7e1e45adaef207d3484abcfd2008f3063c 100755 (executable)
@@ -26,7 +26,7 @@ if test $SYNCPROV = syncprovno; then
        exit 0
 fi 
 
-mkdir $TESTDIR $DBDIR1 $DBDIR2 $DBDIR3 $DBDIR4 $DBDIR5 $DBDIR6
+mkdir -p $TESTDIR $DBDIR1 $DBDIR2 $DBDIR3 $DBDIR4 $DBDIR5 $DBDIR6
 
 #
 # Test replication:
index 777f0d66d10df9ad916fefb8da1fd5f2dbe94245..e9e5db579d3d30f420a2520ec35d5045640087c7 100755 (executable)
@@ -18,7 +18,7 @@ echo "running defines.sh"
 
 if test "$AC_WITH_TLS" != "yes" ; then
        echo "test disabled, requires --with-tls"
-       exit
+       exit 0
 fi
 
 mkdir -p $TESTDIR $DBDIR1
index f4e0a97f09470b0d0e49cbf98db9107c68696352..cda58d406a478d1124bb90362f6b00423f783e4c 100755 (executable)
@@ -20,8 +20,8 @@ echo "running defines.sh"
 ## Make sure that you turn on LDAP_COMP_MATCH in slapd source codes
 ## and --enable-modules  is configured yes
 if test "$AC_WITH_MODULES_ENABLED" != "yes" ; then
-        echo "dynamic module disabled "
-        exit
+        echo "dynamic module disabled, test skipped"
+        exit 0
 fi
 
 mkdir -p $TESTDIR $DBDIR1
@@ -38,7 +38,8 @@ if test $RC != 0 ; then
        echo "slapadd failed ($RC)!"
        echo "Be sure to have a certificate module in tests/data/comp_libs "
        echo "The module is in openldap/contrib/slapd-modules/comp_match"
-       exit 
+       echo "Test skipped."
+       exit 0
 fi
 
 echo "Running slapindex to index slapd database..."
index eeb863e47e541855ef095e9dcc0b531edbf5c95f..b42f104133f65cb646a3c7b29985389c89158255 100755 (executable)
@@ -26,7 +26,7 @@ if test $TRANSLUCENT = translucentno ; then
 fi 
 
 if test $BACKEND = ldbm ; then
-       echo "Translucent Proxy overlay not qualified for use with LDBM, skipping"
+       echo "Translucent Proxy overlay not qualified for use with LDBM, test skipped"
        exit 0
 fi
 
index b802c1372baf2ff293cd375416e26f21467d1808..c1d81cddfd0042ebcec9b128720d7076bc04e34a 100755 (executable)
@@ -25,7 +25,7 @@ fi
 
 # to be removed some time...
 if test "x$TEST_META" = "xno" ; then
-       echo "### disabled by \"TEST_META=no\"; unset TEST_META to re-enable"
+       echo '### Test disabled by "TEST_META=no"; unset TEST_META to re-enable'
        echo ""
        exit 0
 else
@@ -214,4 +214,3 @@ fi
 
 echo ">>>>> Test succeeded"
 exit 0
-
index c56121bb1d28103b0fa93928039b0cc02cba4347..b38457de3c0b62669d540afa4d1826018dc48004 100755 (executable)
@@ -26,7 +26,7 @@ echo "running defines.sh"
 . $SRCDIR/scripts/defines.sh
 
 if test "$ACI" = "acino" ; then
-       echo "ACI not enabled; skipping..."
+       echo "ACI not enabled, test skipped"
        exit 0
 fi