272 |
if test -r $dir/summary.txt ; then |
if test -r $dir/summary.txt ; then |
273 |
grep '^[YN] [YN] [YN] [YN]' $dir/summary.txt > ./all_tests 2>/dev/null |
grep '^[YN] [YN] [YN] [YN]' $dir/summary.txt > ./all_tests 2>/dev/null |
274 |
t_tot=`cat ./all_tests | wc -l | sed -e 's| ||g'` |
t_tot=`cat ./all_tests | wc -l | sed -e 's| ||g'` |
275 |
t_pass=`grep 'pass ' ./all_tests | wc -l | sed -e 's| ||g'` |
t_pass=`grep '^Y Y Y Y' ./all_tests | grep 'pass ' | wc -l | sed -e 's| ||g'` |
276 |
fi |
fi |
277 |
rm -f ./all_tests |
rm -f ./all_tests |
278 |
# echo "${dir##*/} : $t_pass out of $t_tot" |
# echo "${dir##*/} : $t_pass out of $t_tot" |