tidy-html5/test/testaccess.sh

22 lines
364 B
Bash
Raw Normal View History

2011-11-17 02:44:16 +00:00
#! /bin/sh
#
# testaccess.sh - execute all testcases for regression testing
#
# (c) 2005 (W3C) MIT, ERCIM, Keio University
# See tidy.c for the copyright notice.
#
2015-02-13 11:19:51 +00:00
# <URL:http://www.html-tidy.org/>
2011-11-17 02:44:16 +00:00
#
# set -x
VERSION='$Id'
cat accesscases.txt | sed 1d | \
{
while read bugNo expected
do
./testaccessone.sh $bugNo $expected "$@" | tee -a testaccess.log
done
}