aboutsummaryrefslogtreecommitdiffstats
path: root/t.validate-xhtml
blob: e327198836e5888e341c710f3592a3c39d664949 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#! /bin/sh

# This test script validates all *.html files as XHTML.

set -e
e=0
fail=
IFS=$(printf '\n\t')
for i in "${srcdir}"/*.html ; do
    xmllint --postvalid --noout "$i" || { e=1 ; fail="$i${fail:+" "}$fail" ; }
done
if [ $e != 0 ] ; then
    echo >&2 ">>>>> Invalid XHTML in files: ${fail}."
fi
exit $e