]> git.ipfire.org Git - thirdparty/bind9.git/commitdiff
exit 255 for SKIPPED
authorMark Andrews <marka@isc.org>
Fri, 28 Oct 2011 03:15:05 +0000 (03:15 +0000)
committerMark Andrews <marka@isc.org>
Fri, 28 Oct 2011 03:15:05 +0000 (03:15 +0000)
bin/tests/system/edns/prereq.sh

index f8b30a74eb798645ca140480564ee2207e19dc3e..2f6fb80dfee20a043a22018af17c2e2e1cd4a53d 100644 (file)
@@ -15,7 +15,7 @@
 # OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
 # PERFORMANCE OF THIS SOFTWARE.
 
-# $Id: prereq.sh,v 1.1 2011/10/28 02:18:56 smann Exp $
+# $Id: prereq.sh,v 1.2 2011/10/28 03:15:05 marka Exp $
 
 if $PERL -e 'use Net::DNS;' 2>/dev/null
 then
@@ -26,9 +26,9 @@ then
                :
        else
                echo "I:This test requires the version 0.66 or later of the Net::DNS library." >&2
-               exit 1
+               exit 255
        fi
 else
     echo "I:This test requires the Net::DNS library." >&2
-    exit 1
+    exit 255
 fi