mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-11-03 20:01:16 +00:00
d5ae2c8882
* tests/Makefile.am (EXTRA_DIST): Distribute domainschemadata/. * tests/domainschematest: Fail the test if find invocation fails.
33 lines
649 B
Bash
Executable File
33 lines
649 B
Bash
Executable File
#!/bin/sh
|
|
|
|
test -z "$srcdir" && srcdir=`pwd`
|
|
|
|
DOMAINDIRS="domainschemadata qemuxml2argvdata sexpr2xmldata xmconfigdata xml2sexprdata"
|
|
|
|
n=0
|
|
f=0
|
|
for dir in $DOMAINDIRS
|
|
do
|
|
XML=`find $abs_srcdir/$dir -name '*.xml'` || exit 1
|
|
|
|
for xml in $XML
|
|
do
|
|
n=`expr $n + 1`
|
|
printf "%4d) %.60s " $n $(basename $(dirname $xml))"/"$(basename $xml)
|
|
result=`xmllint --relaxng $srcdir/../docs/libvirt.rng --noout $xml 2>&1`
|
|
ret=$?
|
|
if test $ret = 0; then
|
|
echo "OK"
|
|
else
|
|
echo "FAILED"
|
|
echo $result
|
|
f=`expr $f + 1`
|
|
fi
|
|
done
|
|
done
|
|
echo "Validated $n files, $f failed"
|
|
|
|
ret=0
|
|
test $f != 0 && ret=255
|
|
exit $ret
|