OSDN Git Service

フォルダ名変更
[wordring-tm/wordring-tm.git] / third-party / tidy-html5-master / test / testxml.sh
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://www.html-tidy.org/>
10 #
11 # set -x
12
13 VERSION='$Id'
14
15 BUGS="427837 431956 433604 433607 433670 434100\
16  480406 480701 500236 503436 537604 616744 640474 646946"
17
18 while read bugNo expected
19 do
20 #  echo Testing $bugNo | tee -a testxml.log
21   ./testone.sh "$bugNo" "$expected" "$@" | tee -a testxml.log
22   if test -f "./tmp/out_$bugNo.html"
23   then
24     mv "./tmp/out_$bugNo.html" "./tmp/out_$bugNo.xml"
25   fi
26 done < xmlcases.txt
27