summaryrefslogtreecommitdiffstats
path: root/contrib/ipfilter/test/dotest
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/ipfilter/test/dotest')
-rw-r--r--contrib/ipfilter/test/dotest40
1 files changed, 0 insertions, 40 deletions
diff --git a/contrib/ipfilter/test/dotest b/contrib/ipfilter/test/dotest
deleted file mode 100644
index 2989109..0000000
--- a/contrib/ipfilter/test/dotest
+++ /dev/null
@@ -1,40 +0,0 @@
-#!/bin/sh
-thistest=$1
-format=$2
-output=$3
-tuning=$4
-if [ -f /usr/ucb/touch ] ; then
- TOUCH=/usr/ucb/touch
-else
- if [ -f /usr/bin/touch ] ; then
- TOUCH=/usr/bin/touch
- else
- if [ -f /bin/touch ] ; then
- TOUCH=/bin/touch
- fi
- fi
-fi
-if [ "$tuning" != "" ] ; then
- case $tuning in
- -*)
- ;;
- *)
- tuning="-T $tuning"
- ;;
- esac
-fi
-echo "${thistest}...";
-/bin/cp /dev/null results/${thistest}
-( while read rule; do
- echo "$rule" | ../ipftest -F $format -Rbr - -i input/${thistest} $tuning>> results/${thistest};
- if [ $? -ne 0 ] ; then
- exit 1;
- fi
- echo "--------" >> results/${thistest}
-done ) < regress/${thistest}
-cmp expected/${thistest} results/${thistest}
-status=$?
-if [ $status = 0 ] ; then
- $TOUCH ${thistest}
-fi
-exit $status
OpenPOWER on IntegriCloud