1#! /bin/sh
2
3#
4# testaccess.sh - execute all testcases for regression testing
5#
6# (c) 2005 (W3C) MIT, ERCIM, Keio University
7# See tidy.c for the copyright notice.
8#
9# <URL:http://tidy.sourceforge.net/>
10#
11# CVS Info:
12#
13#    $Author: arnaud02 $
14#    $Date: 2005/03/23 12:57:19 $
15#    $Revision: 1.1 $
16#
17# set -x
18
19VERSION='$Id'
20
21cat accesscases.txt | sed 1d | \
22{
23while read bugNo expected
24do
25  ./testaccessone.sh $bugNo $expected "$@" | tee -a testaccess.log
26done
27}
28