mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-11-02 11:21:12 +00:00
ad896a1cdd
* tests/schematestutils.sh: Use printf rather than echo -e.
40 lines
619 B
Bash
40 lines
619 B
Bash
#!/bin/sh
|
|
|
|
check_schema () {
|
|
|
|
DIRS=$1
|
|
SCHEMA="$abs_srcdir/../docs/schemas/$2"
|
|
|
|
test_intro $this_test
|
|
|
|
n=0
|
|
f=0
|
|
for dir in $DIRS
|
|
do
|
|
XML=`find $abs_srcdir/$dir -name '*.xml'` || exit 1
|
|
|
|
for xml in $XML
|
|
do
|
|
n=`expr $n + 1`
|
|
cmd="xmllint --relaxng $SCHEMA --noout $xml"
|
|
result=`$cmd 2>&1`
|
|
ret=$?
|
|
|
|
test_result $n $(basename $(dirname $xml))"/"$(basename $xml) $ret
|
|
if test "$verbose" = "1" && test $ret != 0 ; then
|
|
printf '%s\n' "$cmd" "$result"
|
|
fi
|
|
if test "$ret" != 0 ; then
|
|
f=`expr $f + 1`
|
|
fi
|
|
done
|
|
done
|
|
|
|
test_final $n $f
|
|
|
|
ret=0
|
|
test $f != 0 && ret=255
|
|
exit $ret
|
|
|
|
}
|