]> git.sur5r.net Git - openldap/commitdiff
Add NOEXIT envvar to run all tests and tally failures
authorHoward Chu <hyc@openldap.org>
Wed, 31 Aug 2011 22:15:39 +0000 (15:15 -0700)
committerQuanah Gibson-Mount <quanah@openldap.org>
Tue, 1 Nov 2011 18:26:26 +0000 (11:26 -0700)
tests/scripts/all

index b4c0009f3476220bb8ac9fe1c5a4dbeb892bc740..736e9bfdf84a7c7758a044e6642bf13dd3feea85 100755 (executable)
@@ -21,10 +21,15 @@ if test -t 1 ; then
        TN=`$SHTOOL echo -e "%b" 2>/dev/null`
 fi
 
+FAILCOUNT=0
 SLEEPTIME=10
 
 echo ">>>>> Executing all LDAP tests for $BACKEND"
 
+if [ -n "$NOEXIT" ]; then
+       echo "Result    Test" > $TESTWD/results
+fi
+
 for CMD in $SRCDIR/scripts/test*; do
        case "$CMD" in
                *~)             continue;;
@@ -57,11 +62,31 @@ EOF
        if test $RC -eq 0 ; then
                echo ">>>>> $CMD completed ${TB}OK${TN} for $BACKEND."
        else
-               echo ">>>>> $CMD ${TB}failed${TN} for $BACKEND (exit $RC)"
-               exit $RC
+               echo ">>>>> $CMD ${TB}failed${TN} for $BACKEND"
+               FAILCOUNT=`expr $FAILCOUNT + 1`
+
+               if [ -n "$NOEXIT" ]; then
+                       echo "Continuing..."
+               else
+                       echo "(exit $RC)"
+                       exit $RC
+               fi
+       fi
+       if [ -n "$NOEXIT" ]; then
+               echo "$RC       $CMD" >> $TESTWD/results
        fi
 
 #      echo ">>>>> waiting $SLEEPTIME seconds for things to exit"
 #      sleep $SLEEPTIME
        echo ""
 done
+
+if [ -n "$NOEXIT" ]; then
+       if [ "$FAILCOUNT" -gt 0 ]; then
+               cat $TESTWD/results
+               echo "$FAILCOUNT tests failed. Please review the test log."
+               exit $FAILCOUNT
+       else
+               echo "All tests succeeded."
+       fi
+fi