| #!/bin/sh | |
| name=$1 | |
| format=$2 | |
| output=$3 | |
| tuning=$4 | |
| . ./ipflib.sh | |
| test_init | |
| if [ "$tuning" != "" ] ; then | |
| case $tuning in | |
| -*) | |
| ;; | |
| *) | |
| tuning="-T $tuning" | |
| ;; | |
| esac | |
| fi | |
| echo "${name}..."; | |
| n=1 | |
| /bin/cp /dev/null results/${name} | |
| ( while read rule; do | |
| set_core $name $n | |
| echo "$rule" | ../ipftest -F $format -Rbr - -i input/${name} $tuning>> results/${name} & | |
| back=$! | |
| wait $back | |
| test_end_leak $? | |
| n=`expr $n + 1` | |
| echo "--------" >> results/${name} | |
| done ) < regress/${name} | |
| check_results $name | |
| exit $status |