From: Mark Andrews Date: Mon, 17 Jun 2013 02:59:50 +0000 (+1000) Subject: Use extended regular expression as HPUX doesn't like grep -w '\(TXT\|ANY\)' X-Git-Tag: v9.10.0a1~274 X-Git-Url: http://git.ipfire.org/gitweb/?a=commitdiff_plain;h=945ce145e02d60f6cd0e97ee0d21ebd9ae975a76;p=thirdparty%2Fbind9.git Use extended regular expression as HPUX doesn't like grep -w '\(TXT\|ANY\)' --- diff --git a/bin/tests/system/cacheclean/tests.sh b/bin/tests/system/cacheclean/tests.sh index 37d1e056f85..712d2b22acf 100644 --- a/bin/tests/system/cacheclean/tests.sh +++ b/bin/tests/system/cacheclean/tests.sh @@ -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 -w '\(TXT\|ANY\)'| wc -l` +nrecords=`grep flushtest.example ns2/named_dump.db | grep -v '^;' | grep -Ew '(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 -w '\(TXT\|ANY\)' | wc -l` +nrecords=`grep flushtest.example ns2/named_dump.db | grep -v '^;' | grep -Ew '(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`