1#! /bin/sh
2
3#
4# testxml.sh - execute all XML testcases
5#
6# (c) 1998-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/08 12:08:00 $
15#    $Revision: 1.5 $
16#
17# set -x
18
19VERSION='$Id'
20
21BUGS="427837 431956 433604 433607 433670 434100\
22 480406 480701 500236 503436 537604 616744 640474 646946"
23
24while read bugNo expected
25do
26#  echo Testing $bugNo | tee -a testxml.log
27  ./testone.sh "$bugNo" "$expected" "$@" | tee -a testxml.log
28  if test -f "./tmp/out_$bugNo.html"
29  then
30    mv "./tmp/out_$bugNo.html" "./tmp/out_$bugNo.xml"
31  fi
32done < xmlcases.txt
33
34