]> git.sur5r.net Git - openldap/commitdiff
ITS#6406: Return failure instead of $? when a program unexpectedly succeeded
authorHallvard Furuseth <hallvard@openldap.org>
Sun, 29 Nov 2009 22:27:34 +0000 (22:27 +0000)
committerHallvard Furuseth <hallvard@openldap.org>
Sun, 29 Nov 2009 22:27:34 +0000 (22:27 +0000)
tests/scripts/relay
tests/scripts/test014-whoami
tests/scripts/test016-subref
tests/scripts/test017-syncreplication-refresh
tests/scripts/test028-idassert
tests/scripts/test032-chain
tests/scripts/test035-meta
tests/scripts/test038-retcode
tests/scripts/test046-dds
tests/scripts/test047-ldap

index bf88c15167aac5db773bb01a553c798aa8e53787..825d2122f217c648d1ddce59bd229be8db0e33fe 100755 (executable)
@@ -389,7 +389,7 @@ RC=$?
 if test $RC != 6 && test $RC,$BACKEND != 5,null ; then
        echo "Compare failed ($RC)!"
        test $KILLSERVERS != no && kill -HUP $KILLPIDS
-       exit $RC
+       exit 1
 fi
 
 test $KILLSERVERS != no && kill -HUP $KILLPIDS
index c1dec3f2873315595d8e94ed3bbfddfc75846414..8f90ed43fcf6cc951fb969c9bd851e0b747356d3 100755 (executable)
@@ -437,7 +437,7 @@ RC=$?
 if test $RC != 1 ; then
        echo "ldapwhoami failed ($RC)!"
        test $KILLSERVERS != no && kill -HUP $KILLPIDS
-       exit $RC
+       exit 1
 fi
 
 BINDDN="dc=example,dc=com"
index 7cdee8668cfbe918db047fca53ba0e378c9cfbf3..79d2eb6babc8992154615a001016421c2b190dd4 100755 (executable)
@@ -87,7 +87,7 @@ RC=$?
 if test $RC != $RCODE ; then
        echo "ldapsearch: unexpected result ($RC)! (referral expected)"
        test $KILLSERVERS != no && kill -HUP $KILLPIDS
-       exit $RC
+       exit 1
 fi
 
 XREFDN="$REFDN"
@@ -125,7 +125,7 @@ RC=$?
 if test $RC != $RCODE ; then
        echo "ldapsearch: unexpected result ($RC)! (referral expected)"
        test $KILLSERVERS != no && kill -HUP $KILLPIDS
-       exit $RC
+       exit 1
 fi
 
 echo "Testing one-level searching at $XREFDN..."
@@ -134,7 +134,7 @@ RC=$?
 if test $RC != $RCODE ; then
        echo "ldapsearch: unexpected result ($RC)! (referral expected)"
        test $KILLSERVERS != no && kill -HUP $KILLPIDS
-       exit $RC
+       exit 1
 fi
 
 echo "Testing subtree searching at $XREFDN..."
@@ -143,7 +143,7 @@ RC=$?
 if test $RC != $RCODE ; then
        echo "ldapsearch: unexpected result ($RC)! (referral expected)"
        test $KILLSERVERS != no && kill -HUP $KILLPIDS
-       exit $RC
+       exit 1
 fi
 
 XREFDN="uid=xxx,o=abc,$REFDN"
@@ -153,7 +153,7 @@ RC=$?
 if test $RC != $RCODE ; then
        echo "ldapsearch: unexpected result ($RC)! (referral expected)"
        test $KILLSERVERS != no && kill -HUP $KILLPIDS
-       exit $RC
+       exit 1
 fi
 
 echo "Testing one-level searching at $XREFDN..."
@@ -162,7 +162,7 @@ RC=$?
 if test $RC != $RCODE ; then
        echo "ldapsearch: unexpected result ($RC)! (referral expected)"
        test $KILLSERVERS != no && kill -HUP $KILLPIDS
-       exit $RC
+       exit 1
 fi
 
 echo "Testing subtree searching at $XREFDN..."
@@ -171,7 +171,7 @@ RC=$?
 if test $RC != $RCODE ; then
        echo "ldapsearch: unexpected result ($RC)! (referral expected)"
        test $KILLSERVERS != no && kill -HUP $KILLPIDS
-       exit $RC
+       exit 1
 fi
 
 test $KILLSERVERS != no && kill -HUP $KILLPIDS
index da4386b56505af00ae4415b462a8f995c178fc18..9de76e38881d7c85340d5a936eeb06d758962a62 100755 (executable)
@@ -307,7 +307,7 @@ RC=$?
 if test $RC != 10 ; then
        echo "ldapmodify should have returned referral ($RC)!"
        test $KILLSERVERS != no && kill -HUP $KILLPIDS
-       exit $RC
+       exit 1
 fi
 
 OPATTRS="entryUUID creatorsName createTimestamp modifiersName modifyTimestamp"
index 59d45db3d8cbcc4bb1a830e082fd76e6c06aea0e..7ad0f3ad80a39d06e484f97dd64e64c558131968 100755 (executable)
@@ -119,7 +119,7 @@ RC=$?
 if test $RC != 1 ; then
        echo "ldapwhoami should have failed ($RC)!"
        test $KILLSERVERS != no && kill -HUP $KILLPIDS
-       exit $RC
+       exit 1
 fi
 
 AUTHZID="u:bjensen"
@@ -129,7 +129,7 @@ RC=$?
 if test $RC != 1 ; then
        echo "ldapwhoami should have failed ($RC)!"
        test $KILLSERVERS != no && kill -HUP $KILLPIDS
-       exit $RC
+       exit 1
 fi
 
 echo "Testing ldapwhoami as proxy IT..."
@@ -148,7 +148,7 @@ RC=$?
 if test $RC != 1 ; then
        echo "ldapwhoami should have failed ($RC)!"
        test $KILLSERVERS != no && kill -HUP $KILLPIDS
-       exit $RC
+       exit 1
 fi
 
 AUTHZID="u:bjorn"
@@ -158,7 +158,7 @@ RC=$?
 if test $RC != 1 ; then
        echo "ldapwhoami should have failed ($RC)!"
        test $KILLSERVERS != no && kill -HUP $KILLPIDS
-       exit $RC
+       exit 1
 fi
 
 AUTHZID="dn:cn=Sandbox,ou=Admin,dc=example,dc=com"
index 1e55453fa4955521755c65eb1bc2849d67bee0d2..5f78156e0066dc2fd2d6131fd305738acda2a7cd 100755 (executable)
@@ -161,7 +161,7 @@ for P in $PORT1 $PORT2 ; do
        if test $RC != 6 && test $RC,$BACKEND != 5,null ; then
                echo "ldapcompare failed ($RC)!"
                test $KILLSERVERS != no && kill -HUP $KILLPIDS
-               exit $RC
+               exit 1
        fi
 
        DN="ou=Other,$BASEDN"
@@ -173,7 +173,7 @@ for P in $PORT1 $PORT2 ; do
        if test $RC != 6 && test $RC,$BACKEND != 5,null ; then
                echo "ldapcompare failed ($RC)!"
                test $KILLSERVERS != no && kill -HUP $KILLPIDS
-               exit $RC
+               exit 1
        fi
 done
 
index d2ba331be506582aa2542c0a7891fe2c8f883c36..0f3f7a3f9bce1bce1a4aa57ab7dcba2fc6cae986 100755 (executable)
@@ -726,7 +726,7 @@ case $RC,$BACKEND in
        *)
                echo "Compare failed ($RC)!"
                test $KILLSERVERS != no && kill -HUP $KILLPIDS
-               exit $RC
+               exit 1
        ;;
 esac
 
index 41f1ade7cdb4b2b4176dd6e0ecd7107778843492..ab536863a61fbbb2f74d4f37499692baae207a0f 100755 (executable)
@@ -77,7 +77,7 @@ RC=$?
 if test $RC != 3 ; then
        echo "ldapsearch failed ($RC)!"
        test $KILLSERVERS != no && kill -HUP $KILLPIDS
-       exit $RC
+       exit 1
 fi
 
 echo "Testing modify for unwillingToPerform..."
@@ -90,7 +90,7 @@ RC=$?
 if test $RC != 53 ; then
        echo "ldapmodify failed ($RC)!"
        test $KILLSERVERS != no && kill -HUP $KILLPIDS
-       exit $RC
+       exit 1
 fi
 
 echo "Testing compare for success after sleep (2 s)..."
index d0af563f1fd949bdea72da25d6ea9f08f3f30ee9..d77a459d6ce5c696e7cb7ee8674bd59c71fcf7fc 100755 (executable)
@@ -444,7 +444,7 @@ case $RC in
 0)
        echo "ldapmodify should have failed ($RC)!"
        test $KILLSERVERS != no && kill -HUP $KILLPIDS
-       exit $RC
+       exit -1
        ;;
 50)
        echo "ldapmodify failed ($RC)"
@@ -475,7 +475,7 @@ RC=$?
 if test $RC = 0 ; then
        echo "ldapexop should have failed ($RC)!"
        test $KILLSERVERS != no && kill -HUP $KILLPIDS
-       exit $RC
+       exit -1
 fi
 
 echo "Trying to refresh the meeting as $JAJDN (should fail)..."
@@ -486,7 +486,7 @@ RC=$?
 if test $RC = 0 ; then
        echo "ldapexop should have failed ($RC)!"
        test $KILLSERVERS != no && kill -HUP $KILLPIDS
-       exit $RC
+       exit -1
 fi
 
 echo "Trying to delete the meeting as $BABSDN (should fail)..."
@@ -500,7 +500,7 @@ case $RC in
 0)
        echo "ldapdelete should have failed ($RC)!"
        test $KILLSERVERS != no && kill -HUP $KILLPIDS
-       exit $RC
+       exit -1
        ;;
 50)
        echo "ldapdelete failed ($RC)"
index 492ec9cbc3fa0b178e943e19f0ce82c056876e85..4052df856bb3020761091f470cf0f9c068afa741 100755 (executable)
@@ -741,7 +741,7 @@ case $RC,$BACKEND in
        *)
                echo "Compare failed ($RC)!"
                test $KILLSERVERS != no && kill -HUP $KILLPIDS
-               exit $RC
+               exit 1
        ;;
 esac