| #!/bin/sh | |
| name=$1 | |
| format=$2 | |
| . ./ipflib.sh | |
| test_init | |
| echo "$name..."; | |
| /bin/cp /dev/null results/$1 | |
| ../ipftest -F $format $4 -Rbr regress/$name -i input/$name > results/$name & | |
| back=$! | |
| wait $back | |
| test_end_leak $? | |
| echo "--------" >> results/$name | |
| check_results $name | |
| exit $status |