BIND 10 trac1818, updated. e53c45cfe80c923524b2bd5610d29bcdd0c5f4f8 [1818] Don't show dig output for expected failures
BIND 10 source code commits
bind10-changes at lists.isc.org
Mon Apr 2 08:30:17 UTC 2012
The branch, trac1818 has been updated
via e53c45cfe80c923524b2bd5610d29bcdd0c5f4f8 (commit)
from f405447cfb03b02cee266e0d83e1bc57005ed61c (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit e53c45cfe80c923524b2bd5610d29bcdd0c5f4f8
Author: Mukund Sivaraman <muks at isc.org>
Date: Mon Apr 2 13:59:55 2012 +0530
[1818] Don't show dig output for expected failures
-----------------------------------------------------------------------
Summary of changes:
tests/system/bindctl/tests.sh | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
-----------------------------------------------------------------------
diff --git a/tests/system/bindctl/tests.sh b/tests/system/bindctl/tests.sh
index 157e9de..352642e 100755
--- a/tests/system/bindctl/tests.sh
+++ b/tests/system/bindctl/tests.sh
@@ -33,7 +33,7 @@ cnt_value2=0
cnt_value3=0
echo "I:Checking b10-auth is disabled by default ($n)"
-$DIG +norec @10.53.0.1 -p 53210 ns.example.com. A && status=1
+$DIG +norec @10.53.0.1 -p 53210 ns.example.com. A > /dev/null && status=1
if [ $status != 0 ]; then echo "I:failed"; fi
n=`expr $n + 1`
@@ -75,7 +75,7 @@ quit
' | $RUN_BINDCTL \
--csv-file-dir=$BINDCTL_CSV_DIR 2>&1 > /dev/null || status=1
# dig should exit with a failure code.
-$DIG +tcp +norec @10.53.0.1 -p 53210 ns.example.com. A && status=1
+$DIG +tcp +norec @10.53.0.1 -p 53210 ns.example.com. A > /dev/null && status=1
if [ $status != 0 ]; then echo "I:failed"; fi
n=`expr $n + 1`
More information about the bind10-changes
mailing list