blob: 61d149da410644dff23e2c6418a489c314bbe573 [file] [log] [blame]
# /bin/bash
if [ "$1" == "" ]; then
echo "Usage: rpt1 <TestCase>"
exit 1
fi
cd TestCases
echo "**"
echo "** TC Group: $1"
echo "** Date : "`date`
echo "** By : "`who | cut -d " " -f 1`
echo "**"
echo ""
echo "-- Description --"
cat $1/Description
echo -- Positive Cases --
grep -h "^# $1.*OK " $1/[0-9]* | cut -d ' ' -f 2- | sed -e 's/ / /'
echo
echo -- Negative Cases --
grep -h "^# $1.*FAIL " $1/[0-9]* | cut -d ' ' -f 2- | sed -e 's/ / /'
cd ..
exit 0