]> git.ipfire.org Git - thirdparty/bind9.git/commitdiff
[master] use egrep as solaris doesn't like grep -E
authorEvan Hunt <each@isc.org>
Mon, 1 Jul 2013 21:08:31 +0000 (14:08 -0700)
committerEvan Hunt <each@isc.org>
Mon, 1 Jul 2013 21:08:31 +0000 (14:08 -0700)
bin/tests/system/cacheclean/tests.sh

index 37d164b1ca0f6be01a00d72d1c40dc10f5560e00..3a4ae1fda25e97b992b1bd0c685275ede242d943 100644 (file)
@@ -94,7 +94,7 @@ echo "I:reset and check that records are correctly cached initially"
 ret=0
 load_cache
 dump_cache
-nrecords=`grep flushtest.example ns2/named_dump.db | grep -v '^;' | grep -Ew '(TXT|ANY)'|  wc -l`
+nrecords=`grep flushtest.example ns2/named_dump.db | grep -v '^;' | egrep '(TXT|ANY)'|  wc -l`
 [ $nrecords -eq 17 ] || { ret=1; echo "I: found $nrecords records expected 17"; }
 if [ $ret != 0 ]; then echo "I:failed"; fi
 status=`expr $status + $ret`
@@ -180,7 +180,7 @@ status=`expr $status + $ret`
 echo "I:check the number of cached records remaining"
 ret=0
 dump_cache
-nrecords=`grep flushtest.example ns2/named_dump.db | grep -v '^;' | grep -Ew '(TXT|ANY)' |  wc -l`
+nrecords=`grep flushtest.example ns2/named_dump.db | grep -v '^;' | egrep '(TXT|ANY)' |  wc -l`
 [ $nrecords -eq 17 ] || { ret=1; echo "I: found $nrecords records expected 17"; }
 if [ $ret != 0 ]; then echo "I:failed"; fi
 status=`expr $status + $ret`