tidy-html5/test/testaccess.sh
Michael[tm] Smith b92d7aab88 new
2011-11-17 11:44:16 +09:00

28 lines
464 B
Bash
Executable file

#! /bin/sh
#
# testaccess.sh - execute all testcases for regression testing
#
# (c) 2005 (W3C) MIT, ERCIM, Keio University
# See tidy.c for the copyright notice.
#
# <URL:http://tidy.sourceforge.net/>
#
# CVS Info:
#
# $Author: arnaud02 $
# $Date: 2005/03/23 12:57:19 $
# $Revision: 1.1 $
#
# set -x
VERSION='$Id'
cat accesscases.txt | sed 1d | \
{
while read bugNo expected
do
./testaccessone.sh $bugNo $expected "$@" | tee -a testaccess.log
done
}