From 30574fa9ad673207097f6cd3f99d2320b3846b35 Mon Sep 17 00:00:00 2001 From: Mark Andrews Date: Fri, 28 Oct 2011 03:15:05 +0000 Subject: [PATCH] exit 255 for SKIPPED --- bin/tests/system/edns/prereq.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/bin/tests/system/edns/prereq.sh b/bin/tests/system/edns/prereq.sh index f8b30a74eb..2f6fb80dfe 100644 --- a/bin/tests/system/edns/prereq.sh +++ b/bin/tests/system/edns/prereq.sh @@ -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