From: Peter van Dijk Date: Sun, 4 Mar 2012 15:00:37 +0000 (+0000) Subject: make returnvalues easier to find for drill/q/unbound regression-test addons X-Git-Tag: auth-3.1-rc1~72 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=328a2cd680acd83928689361619e67cfb1c1bdde;p=pdns make returnvalues easier to find for drill/q/unbound regression-test addons git-svn-id: svn://svn.powerdns.com/pdns/trunk/pdns@2454 d19b8d6e-7fed-0310-83ef-9ca221ded41b --- diff --git a/regression-tests/cleandig b/regression-tests/cleandig index 020b21d89..b57af2f1a 100755 --- a/regression-tests/cleandig +++ b/regression-tests/cleandig @@ -1,13 +1,13 @@ #!/bin/sh ../pdns/sdig $nameserver $port $1 $2 $3 | sort drill -a -p $port -o rd -D -S -k trustedkeys $1 $2 @$nameserver > $testname/drillchase.out 2>&1 -echo $? >> $testname/drillchase.out +echo RETVAL: $? >> $testname/drillchase.out drill -a -p $port -o rd -D -k trustedkeys $1 $2 @$nameserver > $testname/drill.out 2>&1 -echo $? >> $testname/drill.out +echo RETVAL: $? >> $testname/drill.out /usr/lib/go/bin/q -rd=false -check -dnssec -port=$port @$nameserver $2 $1 > $testname/q.out 2>&1 -echo $? >> $testname/q.out +echo RETVAL: $? >> $testname/q.out if [ ! -e $testname/skip-unboundhost ] then unbound-host -v -C unbound-host.conf -t $2 $1 > $testname/unbound-host.out 2>&1 - echo $? >> $testname/unbound-host.out + echo RETVAL: $? >> $testname/unbound-host.out fi \ No newline at end of file