home *** CD-ROM | disk | FTP | other *** search
/ Mega Top 1 / os2_top1.zip / os2_top1 / APPS / TEKST / GREP20 / TESTS / SCRIPTGE.AWK < prev    next >
Text File  |  1993-04-04  |  280b  |  11 lines

  1. BEGIN { print "failures=0"; }
  2. $0 !~ /^#/ && NF == 3 {
  3.     print "echo '" $3 "' | ./grep -E -e '" $2 "' > /dev/null 2>&1";
  4.     print "if [ $? != " $1 " ]"
  5.     print "then"
  6.     printf "\techo Spencer test \\#%d failed\n", ++n
  7.     print "\tfailures=1"
  8.     print "fi"
  9. }
  10. END { print "exit $failures"; }
  11.